Skip to content

Instantly share code, notes, and snippets.

@jekkilekki
Created January 9, 2017 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jekkilekki/d0f1e6669be65fa1dde4019167466283 to your computer and use it in GitHub Desktop.
Save jekkilekki/d0f1e6669be65fa1dde4019167466283 to your computer and use it in GitHub Desktop.
How to Update your WP Password via phpMyAdmin (SQL)
UPDATE `wp_users` SET `user_pass`= MD5('yourpassword') WHERE `user_login`='yourusername';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment