Figure 1: Retrieve password |
A new password will be sent to the E-mail that you specified during the registration process.
If the above method fails. You can also reset the password using the phpMyAdmin tool. Open the phpMyAdmin tool via cPanel. Once you are in phpMyadmin, select your WordPress database, from the left menu. Next click on the SQL tab, which is located at the top. Paste the SQL code below, inside the text area. Replace 'your new password' with the new password, and 'the admin username', with the existing username of the admin account. Please refer to Figure 2.
UPDATE `wp_users` SET `user_pass` = MD5( 'your new password' )
WHERE `wp_users`.`user_login` = "the admin username";
Figure 2: Reset admin password |
I hope that this article will benefit those who lost their blog password. Good luck.