MyBB Community Forums

Full Version: How do i make my super admin account admin again
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i'm made two groups and i wanted to delete one and i was in that one so now i set me as a regular use and my other admin can't change my rank hwo do i set my account back to admin?
./inc/config.php file consists of code line like below for defining the super administrators
$config['super_admins'] = '1';

you can modify it to add required users IDs (separated by comma) for the super administrator
$config['super_admins'] = '1, 2';

user profile can be modified from the admin panel
admin panel >> users & groups >> users --> find user and modify profile
you can display your user account as a registered member - yet you can have the administrator privileges
Thank you!