Question – How to reset WordPress admin password via SQL query? How to reset WordPress admin password using phpMyAdmin? How to Reset WordPress forgotten password with SQL query? How to find WordPress default admin password? If you have forgotten your SugarCRM admin password or due to any reason, you are not able to login to SugarCRM with admin user. You can simply check the active admin user using SQL query and reset the password with simple SQL query. Reset WordPress Admin Password via SQL The first query will fetch show the details of the administrator account based on username.
1 | SELECT * FROM wp_users WHERE user_login = 'admin'; |
…