MyBB Community Forums

Full Version: How to reset admin password?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to reset admin password?

Tried this...
UPDATE `mybb_users` SET `salt` = '', `password` = '098f6bcd4621d373cade4e832627b4f6' WHERE `uid` = '1';


Password is not "test".
Try setting the password using plain text:

UPDATE `mybb_users` SET `salt` = '', `password` = 'test' WHERE `uid` = '1';