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

Gesior online/offline bug fix!

NilssoN042

Banned User
Joined
Sep 8, 2008
Messages
998
Reaction score
2
Location
Sweden, Helsingborg
Hello, Here is a little tutorial how to fix the offline/online bug!

1. Go into xampp/htdocs/layouts/tibiacom!
2. Open layout.php

3. Find: if($config['status']['serverStatus_online'] == 1)
4. Change to: if($config['status']['serverStatus_online'] == 0)

5.REP ME++
 
\htdocs\config-and-functions.php
Look for this line
$info = chr(6).chr(0).chr(255).chr(255).'info';
$sock = @fsockopen("127.0.0.1", $config['server']['port'], $errno, $errstr, 1);
if ($sock)
{
And turn it on
$info = chr(6).chr(0).chr(255).chr(255).'info';
$sock = @fsockopen("YOU IP", $config['server']['loginPort'], $errno, $errstr, 1);
if ($sock)
{
;)
 
for me the server is online (on web-site), but the site is online on the host the server is offline... o.o
 
Back
Top