Skip to content

Instantly share code, notes, and snippets.

@wpsmith
Created February 15, 2014 17:19
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 wpsmith/9022209 to your computer and use it in GitHub Desktop.
Save wpsmith/9022209 to your computer and use it in GitHub Desktop.
SQL: Reset User Password
UPDATE wp_users SET user_pass =md5('newpassword') WHERE user_login = 'yourusername');
UPDATE myprefix_users SET user_pass =md5('newpassword') WHERE user_login = 'yourusername');
@wpsmith
Copy link
Author

wpsmith commented Feb 15, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment