MyBB Community Forums

Full Version: No admins on my board!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.

No one can access the admin cp on my forum, buenoforum.com. All the admin users have been changed to 'registered' users!

What should I do?

John
heloo there
go to mybb_usergroup check the GID of admins it shoul;d be 1. anyway

go to mybb_users, find the the usergroup of each of ur admins, and change the number to it's suitable gid.
like if an admin which his usergroup is 3 which is maybe registred, change it to one.
regards
Is that in phpMyadmin?
yes yes sorry i worte it and cleared it by mistake.

and in mybb_user, find the column usergroup

and set it to the corespondence gid for admins

regards
By default the administrators group is #4

So you can go into the mybb_users table in phpMyAdmin, edit the admin's user, and set their usergroup to 4

Or you can execute one of the following SQL codes:
UPDATE mybb_users SET usergroup=4 WHERE username='Your Username'

or

UPDATE mybb_users SET usergroup=4 WHERE uid='1'

Change the "Your Username" to your username or change "1" to your user ID (usually the UID 1 is the first administrator who made the board).