Skip to content

Instantly share code, notes, and snippets.

@BeardedGinger
Created February 15, 2018 15:46
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 BeardedGinger/d426205274fb8b03ca1570458b61c003 to your computer and use it in GitHub Desktop.
Save BeardedGinger/d426205274fb8b03ca1570458b61c003 to your computer and use it in GitHub Desktop.
Update User Password - MySQL
/**
* 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