Quote Originally Posted by Mitch View Post
Maybe kung can make a stats page that shows if the master server is online and since when. (And counter that shows how often the master server is down)
Code:
<?php
$text="Masterserver offline";
$ziel="63.146.124.40";

$abfrage = fsockopen ("$ziel", 20700, $errno, $errstr, 5);
if (!$abfrage) {
echo $text;
} 
else {

echo "Masterserver online!";
}
?>
??