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

Godshiryu

New Member
Joined
Mar 15, 2010
Messages
40
Reaction score
0
How to do 2 websites on same computer? Not 1 website to 2 servers.. I need 2 websites to 2 servers..
Separate by folders..
But When I will config.php happen this..
Server 1:
Code:
$config['site']['worlds'] = array(0 => 'Server 1');
Works perfectly

But Server 2:
Code:
$config['site']['worlds'] = array(1 => 'Server 2');

When I click on Who Is Online, or Ranking, don't show nothing.. It show only world_id 0 but not show nothing, because have not players with world_id 0

What I have to do?
Thanks!
 
If you separate this GesiorAAC by folders, in second config you should have:
PHP:
$config['site']['worlds'] = array(0 => 'Server 2');
 
Back
Top