How Do I Get to the Config.php File to Make a Super Admin?
The vBulletin software allows you to run a forum on your website. You can designate users as "super admins" with special privileges to moderate and edit forum postings. To make a user a super admin, modify the config.php file to include the user ID of the person to whom you want to grant super admin privileges.
Instructions
-
-
1
Locate the user ID of the person you want to make a super admin. You can find the ID by navigating to www.yourwebsite.com/forum/member.php?u=1. Replace “yourwebsite” with the name of your vBulletin website. The user Id is the number that appears after the “=” sign at the end of the URL.
-
2
Open your website files by using an FTP client.
-
-
3
Double-click the “Includes” folder of your vBulletin site.
-
4
Open the config.php file in Notepad.
-
5
Locate the line of code that reads:
$config['SpecialUsers']['superadministrators'] = '1'; -
6
Add the user id of the person you want to be a super admin after the number “1.” Separate each super admin with a comma. For example, if you want to add user ID 2 as a super admin, the code should read:
$config['SpecialUsers']['superadministrators'] = '1, 2'; -
7
Click “File” and “Save.”
-
8
Copy the configl.php file into the “Includes” folder of your site.
-
1