Reset Joomla password with phpMyAdmin
If you have lost your Joomla administrator password, you can reset it in your MySQL database using phpMyAdmin. Here is how to do it:
- Log in to your Joomla web hosting account and find where to administrate the MySQL database for your Joomla website
- Log in to your Joomla database, usually via phpMyAdmin interface
- Find the _users database and click on it (normally preceded by your account name, i. e. accountname_users)
- Find the record for your account, usually with usertype = Super Administrator
- In the password field you will find a string of characters. That is your old password encoded. You will not be able to retrieve your old password, but you will be able to reset the password to a new one using mySQL’s built in MD5 function. Just click SQL and run this query:
UPDATE example_users SET password=MD5(‘new password’) WHERE usertype = “Super Administrator”;
(put in your new password where it says ‘new password above) - Click ‘Run’ and you have reset your Joomla password!
Related: