Created
February 24, 2017 13:31
-
-
Save ScarletPonytail/1e8d1742f1703f6edc3f626ed808636e to your computer and use it in GitHub Desktop.
Wordpress - Reset Password in PHPMyAdmin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE `wp_users` SET `user_pass`= MD5('yourpassword') WHERE `user_login`='yourusername'; | |
eg. Update Admin | |
UPDATE `wp_users` SET `user_pass`= MD5('yourpassword') WHERE `user_login`='admin'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment