• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

how to fix online server but in the web say off?

Newbie Spellweaver
Joined
Sep 20, 2013
Messages
16
Reaction score
0
ps: im using sql 2008
 
Last edited:
Newbie Spellweaver
Joined
Jan 18, 2012
Messages
75
Reaction score
0
<?php
$server = "127.0.0.1"; //your ip server
$loginport = "10101"; // login port or u can use another port example game zone

if ($fp=@fsockopen($server,$loginport,$ERROR_NO,$ERROR_STR,(float)0.5))
{
fclose($fp);
// do anything if online
}
else
{
// do anything if offline
}
?>