• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Were error?

You use afk status?
if no, check in layout.php:
Code:
[COLOR="red"].$config['status']['serverStatus_players'];[/COLOR]
And change ip in config-and-functions.php
Code:
$sock = @fsockopen("[COLOR="yellowgreen"]127.0.0.1[/COLOR]", $config['server']['statusPort'], $errno, $errstr, 1);
 
You use afk status?
if no, check in layout.php:
Code:
[COLOR="red"].$config['status']['serverStatus_players'];[/COLOR]
And change ip in config-and-functions.php
Code:
$sock = @fsockopen("[COLOR="yellowgreen"]127.0.0.1[/COLOR]", $config['server']['statusPort'], $errno, $errstr, 1);


@ Up, i think that it would have changed the IP during installation, am i right?
 
Change your code on it and check status on website.

PHP:
<? if($config['status']['serverStatus_online'] == 1)
				echo '<b><a href="?subtopic=whoisonline">'.' Online Players: </a></b>'.$config['status']['serverStatus_players'];
			else
				echo '<font color="red"><b>Server<br />OFFLINE</b></font>';
			?>
 
$config['status']['serverStatus_online'] = 1;
$config['status']['serverStatus_players'] = $matches[1];
$config['status']['serverStatus_playersMax'] = $matches[2];
 
Back
Top