Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nunof07
Created April 5, 2019 16:20
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 nunof07/801484876fd19ccd15f48f9f0ef419f0 to your computer and use it in GitHub Desktop.
Save nunof07/801484876fd19ccd15f48f9f0ef419f0 to your computer and use it in GitHub Desktop.
Create WordPress admin account through SQL
INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`) VALUES ('your login', MD5('your password'), 'your name', 'your@email.com', '0');
INSERT INTO `wp_usermeta`(`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (Select max(id) FROM wp_users), 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');
INSERT INTO `wp_usermeta`(`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, (Select max(id) FROM wp_users), 'wp_user_level', '10');
@nunof07
Copy link
Author

nunof07 commented Apr 5, 2019

Don't forget to change the first 4 values in the first line.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment