Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save themightymo/ccfdf28cc614e9822bb4e695b17eb3db to your computer and use it in GitHub Desktop.
Save themightymo/ccfdf28cc614e9822bb4e695b17eb3db to your computer and use it in GitHub Desktop.
Sequel Pro: How to update WordPress Password using md5 hash
/**
* https://fewerthanthree.com/code-snippets/updating-user-password-mysql
*/
UPDATE wp_users
SET user_pass= MD5('password')
WHERE ID = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment