Removed obsolete PHP scripts.

This commit is contained in:
Johannes Findeisen 2024-03-15 07:24:38 +01:00
commit 71d50ba6d0
3 changed files with 0 additions and 44 deletions

View file

@ -1,11 +0,0 @@
---
permalink: /cgi/uptime/obsolete.php
---
<?php
$uptime = shell_exec('uptime');
$version = shell_exec('uptime -V');
header('Content-Type: text/plain; charset=utf-8');
echo('Server ' . substr($version, 0, -1) . ': ' . $uptime);
?>