I have found it useful at times to be able to simply change a password directly in the database, here’s the MySQL query to do it: UPDATE wp_users SET user_pass = MD5(‘THE_PASSWORD’) WHERE wp_users.user_login =’THE_USERNAME’ LIMIT 1;
I have found it useful at times to be able to simply change a password directly in the database, here’s the MySQL query to do it: UPDATE wp_users SET user_pass = MD5(‘THE_PASSWORD’) WHERE wp_users.user_login =’THE_USERNAME’ LIMIT 1;