Warning: exec() has been disabled for security reasons in /home/webpages/lima-city/gollum1990/html/index.php on line 126
http://gollum1990.lima-city.de ist offline.
Warning: exec() has been disabled for security reasons in /home/webpages/lima-city/gollum1990/html/index.php on line 126
http://mysql.lima-city.de ist ]offline.
Code:
$computers = array("http://gollum1990.lima-city.de","http://mysql.lima-city.de");
$zahl = count($computers);
echo "Momentaner Status der einzelnen Server:
";
for($i=0;$i<$zahl;$i++)
{
$ping = exec("ping $computers[$i] -n 1", $online);
$arr_count = count($online);
if ($arr_count <=6)
{
print "
$computers[$i] ist offline.\n";
}
else
{
print "
$computers[$i] ist online.\n";
}
}
?>