Hello, when entering the number of login attempts (in the admin interface), I accidentally entered 1 attempt and blocked the admin account by entering a different password. I would very much like to ask for advice on how I can unblock my admin account.
Thank you very much
Only solution: DB update
Something like
UPDATE resource SET loginTry=0, locked=0 where name='admin';
NB : create a second admin account, to be able to unock user with this account.
Thank you very much for your advice. I'm going to try it
Great problem solved, thanks a lot DB update didn't occur to me 🙂
If you had access to phpMyAdmin could you also change the value from "1" to "0" to unlock the account? Or would it cause issues elsewhere? i.e somewhere else in the software that was tracking locked accounts or similar?
If you had access to phpMyAdmin could you also change the value from "1" to "0" to unlock the account? Or would it cause issues elsewhere? i.e somewhere else in the software that was tracking locked accounts or similar?
It is exactly what is advised on first answer.