How to reset WordPress Admin password without access to email

By | November 21, 2020

Reset Wordoress Admin Password without access to email: access phpMyAdmin, click on the database, scroll down and click on wp_users table, edit the value (select MD5 function), then click go. Or use the following command:

UPDATE `wp_users` SET `user_pass` = MD5( ‘new_password’ ) WHERE `wp_users`.`user_login` = “admin_username”;

Leave a Reply

Your email address will not be published. Required fields are marked *