• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Znote

In the config.php file there's an option to add the accounts numbers who can enter to the admin panel.

PHP:
	// WARNING! Account names written here will have admin access to web page!
	$config['page_admin_access'] = array(
		'youraccnumberhere',
	);
 
open config.php and Find(Ctrl+F) this>> page_admin_access



PHP:
    // WARNING! Account names written here will have admin access to web page!
    $config['page_admin_access'] = array(
        'otland',   << change otland to your account name :)
        'otland1',
    );
 
Last edited:
Back
Top