MyBB Community Forums

Full Version: Problems logging into Admin Panel
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone!

I do not know how or unintentionally, I honestly do not know, can not enter the Admin Panel. Huh
It seems that someone changed me (or I inadvertently did not know!) of group or the group's management changed and now I can not go at all on the admin panel.
How can I reverse this situation?

Thanks in advance.
Do you have the login for the database?

That way you can run a query to make you an admin again, so you can access the Admin panel.
How can I make it Robbert?
I think the easiest way is simply adding yourself to the super admins. To to this you have to open the config file (located in the inc folder). Find:

$config['super_admins'] = 'x'


and replace x your user ID.

The other way is running a so called SQL Query. You need to login into PhpMyAdmin (or another database manager), and run the following query:

UPDATE `mybb_users` SET `usergroup` = '4' WHERE `uid` = 'x' 

again, replace x with your actual user ID
Thanks a lot for you help mate.