MyBB Community Forums

Full Version: super admin (1.2)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
how do i add other super admins in mybb 1.2


cheers

Tazfan
Open Up "inc/config.php" and look for * Super Administrators under that there should already be one their ( ie $config['super_admins'] = '1'; ) simply add under that: $config['super_admins'] = 'uid'; replacing the uid , with the admin's id you want as super admin.
how do u find out the id of the other admins
Hover over the username of your user in the memberlist.. there's a part &uid=.. in the url . where .. is, is your id.
like this


$config['cache_store'] = 'db';

/**
* Super Administrators
* A comma separated list of user IDs who cannot
* be edited, deleted or banned in the Admin CP.
* The administrator permissions for these users
* cannot be altered either.
*/

$config['super_admins'] = '2';
uid=2

?>
no!!
Quote:$config['super_admins'] = '2';
is enough.

If you want more of them use:
Quote:$config['super_admins'] = '2 , 3'

I told you how you should find out the userid of the other admins.. only use the numbers after the &uid= Toungue
I don't think you can use spaces between them though? Confused
It only worked that way for me.

(I tested it yesterday)
It won't work correctly with spaces in 1.2.
It doesn't work for me without spaces. Toungue
Pages: 1 2