Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Created February 24, 2017 13:31
Show Gist options
  • Save ScarletPonytail/1e8d1742f1703f6edc3f626ed808636e to your computer and use it in GitHub Desktop.
Save ScarletPonytail/1e8d1742f1703f6edc3f626ed808636e to your computer and use it in GitHub Desktop.
Wordpress - Reset Password in PHPMyAdmin
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