MyBB Community Forums

Full Version: Add super admins
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to add more than one super admin? Any help would be greatly appreciated!
In config.php, find
/**
 * 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.
 */

Below that, you should see
$config['super_admins'] = '1';

You can append a comma and a user's uid to that (within the quotes) to add them as a super admin.
(2016-08-12, 12:54 AM)Josh H. Wrote: [ -> ]In config.php, find
/**
 * 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.
 */

Below that, you should see
$config['super_admins'] = '1';

You can append a comma and a user's uid to that (within the quotes) to add them as a super admin.

Thank you very much!