• 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!

Server Status

andre66

Banned User
Joined
Oct 27, 2008
Messages
295
Reaction score
0
I've heard alot of people have problem with their server status on the homepage. Example the server is online with xx ppl online and still at the homepage it show offline. Here is how to fix it!

go to config-and-functions.php and find this:

$sock = @fsockopen("127.0.0.1", $config['server']['port'], $errno, $errstr, 1);

And change it to-

TFS 0.3.x:
$sock = @fsockopen("127.0.0.1", $config['server']['statusPort'], $errno, $errstr, 1);
TFS 0.2.x:
$sock = @fsockopen("127.0.0.1", $config['server']['statusProtocolPort'], $errno, $errstr, 1);
 
if bindOnlyConfiguredIpAddress = "yes"
Server engine not listen on localhost and server status not checking ;x
add:
Code:
$sock = @fsockopen($config['server']['ip'], $config['server']['statusPort'], $errno, $errstr, 1);
 
Back
Top