MyBB Community Forums

Full Version: Mybb User Groups
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok according to this

http://docs.mybb.com/1.6/User-Groups/


Super Administrators
This is the usergroup for the very first user set up when MyBB was installed. Users in this group cannot be deleted, changed or banned. These users are also members of the "Administrators" group. Users cannot be added to this group through the Admin CP; they must be added by changing settings in the inc/config.php file. Note: This is note a real usergroup. It is an extension of the Administrators Usergroup.

So , this means I can add another User that will be the same AS THE VERY FIRST user who set up MyBB ??

inc/config.php

How to add another user as Super Administrator through config ? what lines to edit or how ?

Please help
$config['super_admins'] = '1';

comma separated values can be used like below (x , y are user IDs of other super administrators)
$config['super_admins'] = '1,x,y';
(2015-03-30, 09:59 AM).m. Wrote: [ -> ]
$config['super_admins'] = '1';

comma separated values can be used like below (x , y are user IDs of other super administrators)

$config['super_admins'] = '1,x,y';


thanks a loot !! Solved.