MyBB Community Forums

Full Version: I made myself registered -_-
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I accidentally set my primary user group as registered in ACP. Now I can't login to ACP :3

/(o)_(o)\

ugh.
Go to phpMyAdmin, users table, search your user and edit you 'usergroup' from X to 4.
Run this query in PhpMyAdmin:

UPDATE `mybb_users` set usergroup='4' WHERE uid='1';

Backup your database first, just in case.
(2012-06-11, 05:59 AM)Omar G. Wrote: [ -> ]Go to phpMyAdmin, users table, search your user and edit you 'usergroup' from X to 4.
Awhh thank you very much sir. Indeed it worked Smile

(2012-06-11, 06:31 AM)crazy4cs Wrote: [ -> ]Run this query in PhpMyAdmin:

UPDATE `mybb_users` set usergroup='4' WHERE uid='1';

Backup your database first, just in case.

Not nec.