Secret Experience

Secret Experience (https://secretexperience.net/index.php)
-   [L2OFF | Admin] Web Sites (https://secretexperience.net/forumdisplay.php?f=56)
-   -   [Web Site] Script Simples PHP Server Status Check (https://secretexperience.net/showthread.php?t=34185)

Setokaiba 18-09-2013 03:24 PM

Script Simples PHP Server Status Check
 
Esse é o script mais simples de verificação do servidor.
Ao contrário dos demais, este verifica através das portas 2106 (login) 7777 (gameserver).

Código:

<?php
                  $server  = "1.2.3.4";
                  $port  = "2106";
                  $port2  = "7777";
                  $timeout = "1";

                  if ($server and $port and $timeout) {
                        $auth=  @fsockopen("$server", $port, $errno, $errstr, $timeout);
                        $game=  @fsockopen("$server", $port2, $errno, $errstr, $timeout);
                  }
                  if($auth) {
                        echo "<font color=\"#ddd\">Login <font color=\"#1AFF00\">Online</font> - ";
                  }
                  else {
                        echo "<font color=\"#ddd\"> Login <font color=\"#FF0000\">Offline</font> - ";
                  }
                  if($game) {
                        echo "L2Server <font color=\"#1AFF00\">Online</font></font>";
                  }
                  else {
                        echo "L2Server <font color=\"#FF0000\">Offline</font></font>";
                  }
?>



Horários baseados na GMT -3. Agora são 11:50 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.