TIL to Reset WP passwords
POSTED ON:
TAGS: wordpress
While working locally, I always reset the WordPress username/password to something easy.
Of course, don't run this on your LIVE SITES. EVER.
In your myPhpAdmin(or favorite sql client) - access your WordPress database and add this query.
IF there's no admin
, change it to something else.
SQL:
UPDATE wp_users SET user_pass = MD5('password') WHERE user_login = "admin";
Related TILs
Tagged: wordpress