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

Website problem

santrey

New Member
Joined
Feb 18, 2009
Messages
116
Reaction score
0
Hi,
In my htdocs folder I have a map called hozeria and everytime I visit my website I must add /hozeria i.e MYIP/hozeria...
When I try to put all the files in that map to just htdocs It doesn't work to make an account :/

Can anyone please help me?
Rep to everyone.
 
Inside your Server Folder, open Config.lua
And search for the line
Code:
url = ""
and just type your IP there, example Santrey.servegame.com/

And if you already got it, go inside your htdocs/layouts/<name>/layout.php

And search for this
PHP:
function LoginButtonAction()
{
  if(loginStatus == "false") {
    window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement";
  } else {
    window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement";
  }
}
function LoginstatusTextAction(source) {
  if(loginStatus == "false") {
    window.location = LINK_ACCOUNT + "/?subtopic=createaccount";
  } else {
    window.location = LINK_ACCOUNT + "/?subtopic=accountmanagement&action=logout";
  }
}


Zer0xe.
 
Back
Top