MyBB Community Forums

Full Version: forum locked(please help)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi
I login to my forum and I enter it Wrong for Five Times.
and my forum locked
say that one email sent for me but there isnt any email in my inbox and spam.
thanks
You mean you tried to login to your account, and you got locked out?
if you have access to the database then you can try running below SQL queries (where X is your user ID)
UPDATE `mybb_adminoptions` SET `loginattempts` = '0', `loginlockoutexpiry` = '0' WHERE `uid` = 'X'; 
UPDATE mybb_users SET password = MD5('new_password'), salt = '' WHERE uid = 'X';

note: you have to take care of prefix used for your MyBB database. it is assumed that mybb_ is the prefix

after running above SQL queries you can try log in with the new_password

see (if required) common SQL queries and how to run them