MyBB Community Forums

Full Version: [SOLVED] - how do you make a user admin ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to add a user to the administrator group and give him full access like me.

How do I do that ?
Change their usergroup in the admin cp.
Then go to configuration, admin permissions, and set all permissions Smile
(2010-06-24, 04:34 PM)Tommyk Wrote: [ -> ]Then go to configuration, admin permissions, and set all permissions Smile

That should be done by default on a new install.
If you want to give him full access, you will need to make him a super admin. Edit his default user group to your admin rank, and open ../inc/config.php and look for
$config['super_admins'] = '1';
. Add the new admins UserID so its like so.
$config['super_admins'] = '1,2';
(Where "2" is, replace with the new admins UserID.)
All being a simple admin means is you can't be edited, deleted or banned, nothing more. Actual permissions are defined at ACP > Users & Groups > Admin Permissions and by default has everything enabled.
thanks a ton guy's I did all you guy's told me and it works. I didn't found it at first.