Skip to content

How To Reset WordPress Password in PHPMyAdmin – 7 Steps Procedure

Reading Time: 2 minutes

We describe here how we can manually reset WordPress passwords through the database.

Normally if you forget your password, you can use the WordPress password recovery feature to reset the password by e-mail. However, if this option is unavailable (for example, if the e-mail on your site is not working correctly) you can reset the password in the database manually.

Reset WordPress Password in the PhpMyAdmin

To manually reset the WordPress administrator password in the database, follow these steps:

wordpress password reset
WordPress password reset MySQL code
  1. Log in to cPanel.
  2. In the Databases section of the cPanel home screen, click phpMyAdmin.
  3. In the left-hand pane of phpMyAdmin, click the WordPress database. A list of tables in the database appears. Typically, the WordPress database is username_wpXXX, where username represents your cPanel username, and XXX is a three-digit number.
  4. On the top menu bar, click SQL.
  5. Copy and paste the following statement into the SQL query text box. Replace new_password with the new password, and replace admin_username with the administrator’s username.
    UPDATE `wp_users` SET `user_pass` = MD5( 'new_password' ) WHERE `wp_users`.`user_login` = "admin_username";
    • This SQL statement creates an MD5 hash of the password you specify. WordPress requires that passwords are stored in the database in this format. If you try to update the password field directly with the new password, you will be unable to log in to WordPress.
    • Some versions of WordPress use the table name wp_users, while other versions use a different name (for example, wpe6_users). If your WordPress version uses a table name different from the one in the above statement, use it instead.
  6. Click Go. phpMyAdmin updates the database with the new password.
  7. You should now be able to log in to WordPress as the administrator by using the new password.
See also  Install Wordpress

Leave a Reply