
Originally Posted by
ecKo9321
well I kinda finished it, I have reg page, and everything :)
The problem is, even if server is online, it is still showing me the OFFLINE img.
Trying now to fix that script, and I'll reply how to fix it, but if you already done, please post.
Code:
<?php
$online = @fsockopen("<?php echo $serverip; ?>", 28000, $errno, $errstr, 1);
if($online >= 1) {
echo '<img src="css/images/on.png">';
}
else {
echo '<img src="css/images/off.png">';
}
?>
try this instead
Edit:
Did you added your ip to the config_info.php?