MyBB Community Forums

Full Version: Admin Panel Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was adding new user-groups and I was testing to see if the stars would work, and I gave myself a new rank and it took away my administrator and I can no longer access admin panel to change my rank back.

How do I change my rank back since I can't get into admin panel?
Go to your cpanel of web hosting and go to inc/configure.php and click on edit and find superadmin than u will see something like this {super admin} = '' put your forum user Id here(means 1 or whatever no. With your id is register mostly its 1)''
Hope it solve.
Run this query in phpmyadmin:

UPDATE `mybb_usergroups` SET cancp='1' WHERE gid='a'

a being the gid of the group you wish to access admincp with.

~ David
The above will give the new group ACP access, if you just want to move yourself back to the original admin group run this query instead:
UPDATE `mybb_users` SET `usergroup` = '4' WHERE `uid` = '1'