Skip to content

Instantly share code, notes, and snippets.

@scottlyttle
Created February 4, 2013 04:03
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 scottlyttle/4704957 to your computer and use it in GitHub Desktop.
Save scottlyttle/4704957 to your computer and use it in GitHub Desktop.
Update an WordPress users password through the database
UPDATE 'wp_users' SET 'user_pass' = MD5('NEWPASSWORD') WHERE 'user_login' ='username' LIMIT 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment