Joomla reset password using mysql command line

Means you have a root previlegies:

mysql database_name;

mysql> update jos_users set password = MD5("strong_password_here") where id = 111;

id = 111must match to the account for which you want to reset password

Done!

 

Similar Posts:

Leave a Reply

Your email address will not be published. Required fields are marked *