Skip to content

Instantly share code, notes, and snippets.

@khoatran
Created May 24, 2016 02:03
Show Gist options
  • Save khoatran/a69e217975a6f69c32f27fca6b1d697f to your computer and use it in GitHub Desktop.
Save khoatran/a69e217975a6f69c32f27fca6b1d697f to your computer and use it in GitHub Desktop.
Set Wordpress user password by mysql
UPDATE wp_users SET user_pass = MD5('new_password') WHERE ID='id_of_the_user_to_reset_password' LIMIT 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment