• 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) Login button takes me to otland?

Status
Not open for further replies.
open your htdocs\layouts\tibiacom\layout.php
then search for
Code:
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";
  }
}
and delete Link_account or replace with this
Code:
function LoginButtonAction()
{
  if(loginStatus == "false") {
    window.location = "/?subtopic=accountmanagement";
  } else {
    window.location = "/?subtopic=accountmanagement";
  }
}
function LoginstatusTextAction(source) {
  if(loginStatus == "false") {
    window.location = "/?subtopic=createaccount";
  } else {
    window.location = "/?subtopic=accountmanagement&action=logout";
  }
}
rep++? :D
 
Change your config - NOT the website config but your SERVER config, since the website links to your server config and takes the info from there.

url = "http://otland.net" to ur own ip...
 
Last edited:
Status
Not open for further replies.
Back
Top