Categories
Wordpress

WordPress update password

WordPress password updates can be creating an md5sum formatted string.  I used http://www.miraclesalad.com/webtools/md5.php

 

I used the command line of mysql to login to the wordpress database and searched for the id of the password I needed:

select * from wp_users;

then, updated the password to the new password:

update wp_users set user_pass = “<md5sum-asfasfasfasfasfasf” where id = 12

back to work.

 

 

Source:

https://codex.wordpress.org/Resetting_Your_Password

Leave a Reply

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