Created
June 22, 2020 14:13
-
-
Save themightymo/ccfdf28cc614e9822bb4e695b17eb3db to your computer and use it in GitHub Desktop.
Sequel Pro: How to update WordPress Password using md5 hash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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