how to add another administrator

HellOnFire

New Member
hey can some one help me on how can i ad another administrator to my forum so he can have same power as me because i did it the way i know but wen he logs on the admin control panned he only see like couple functions please help me
 
1. Create a new user
2. go to the users profile. get their member ID (it looks like this: yoursite.netmember.php?u=13 so the user ID is 13. open your config.php file and edit super administrators (near the bottom and put the user ID. then edit the user and put it in the administrator group.

Example if the user ID id is 13

// ****** SUPER ADMINISTRATORS ******
// The users specified below will have permission to access the administrator permissions
// page, which controls the permissions of other administrators
$config['SpecialUsers']['superadministrators'] = '1 13';
 
applepod124 said:
1. Create a new user
2. go to the users profile. get their member ID (it looks like this: yoursite.netmember.php?u=13 so the user ID is 13. open your config.php file and edit super administrators (near the bottom and put the user ID. then edit the user and put it in the administrator group.

Example if the user ID id is 13

// ****** SUPER ADMINISTRATORS ******
// The users specified below will have permission to access the administrator permissions
// page, which controls the permissions of other administrators
$config['SpecialUsers']['superadministrators'] = '1 13';


what thats confused :D
 
If you want to add another super admin, then you must edit the config.php file.

Code:
// ****** SUPER ADMINISTRATORS ******
// The users specified below will have permission to access the administrator permissions
// page, which controls the permissions of other administrators
$config['SpecialUsers']['superadministrators'] = '1(add the user ID here separated by a comma)';

but if you just want to add another admin, manage user, set group to admin, edit admin permissions.
 
Back
Top