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

Disable website account signup

DedicatedOT

New Member
Joined
Jun 13, 2009
Messages
977
Reaction score
4
Location
USA
How do you disable Gessior website account signup, I want everything but the account sign up... i only want the ingame manager. but i still want website to show highscores etc...
 
Well you can just disable the Account Signup .php thing in Index.php, but that would disable the login too, redering shops useless... So if you don't want shops, then you are good, but I want shop too...
 
Mmm... first go to createaccount.php
and in the top copy this:
PHP:
if ($config['site']['CreateAccountBlocked'] == false)
{
like this:
PHP:
<?PHP
//CREATE ACCOUNT FORM PAGE
if ($config['site']['CreateAccountBlocked'] == false)
{
if($action == "")
{
......
in the end:

PHP:
}
else

{
$main_content .= '<center><h1>Create Account Disabled</h1></center>';
$main_content .= '<center><h3>'.$config['site']['MsgDisabled'].'</h3></center>';
}

like this:
PHP:
	}
}
}
else

{
$main_content .= '<center><h1>Create Account Disabled</h1></center>';
$main_content .= '<center><h3>'.$config['site']['MsgDisabled'].'</h3></center>';
}
?>

in configs/config.php add this:
Code:
$config['site']['CreateAccountBlocked'] = true; // disable account signup? false = no, true = yes
$config['site']['MsgDisabled'] = "Web Disabled, reason: xxx"; // msg of disable web


(:
 
Back
Top