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

Windows Create account error.

Open your www or htdocs folder and go to layouts/yourlayout/layout.php and search by:
function LoginstatusTextAction(source)
replace:
function LoginstatusTextAction(source) {
if(loginStatus == "false") {
window.location = LINK_ACCOUNT + "?subtopic=createaccount";
} else {
window.location = LINK_ACCOUNT + "?subtopic=accountmanagement&action=logout";
}
}
by:
function LoginstatusTextAction(source) {
if(loginStatus == "false") {
window.location = "?subtopic=createaccount";
} else {
window.location = "?subtopic=accountmanagement&action=logout";
}
}

rep++ if helped
 
Back
Top