Skip to content

Instantly share code, notes, and snippets.

@bratsun
Created March 7, 2017 13:52
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 bratsun/81fd82fbb1dfcd5639cfdf0ab8887d15 to your computer and use it in GitHub Desktop.
Save bratsun/81fd82fbb1dfcd5639cfdf0ab8887d15 to your computer and use it in GitHub Desktop.
Change admin password
use wp_genesis;
SELECT ID, user_login, user_pass FROM wp_users;
UPDATE wp_users SET user_pass = MD5('TEST') WHERE ID=1 LIMIT 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment