Čauky, skúšam jeden status no problém mám v tom, keď 2x refreshnem stránku tak mi napíše server offline
(nerobí to pri každom serveri,, skúšal som aj iné IPčky) nevie niekto v čom môže byť problém ? niečo mám zle nastavené či ?
Kód: Vybrat vše
http://icrafting.eu/test.php
Kód: Vybrat vše
<?php
include_once 'status.class.php';
$status = new MinecraftServerStatus();
$response = $status->getStatus('93.91.250.137:27352');
if(!$response) {
echo"The Server is offline!";
} else {
echo"The Server ".$response['hostname']." is running on ".$response['version']." and is online,
currently are ".$response['players']." players online
of a maximum of ".$response['maxplayers'].". The motd of the server is '".$response['motd']."'.
The server has a ping of ".$response['ping']." milliseconds.";
}
?>