How to manually change the Drupal 6 admin password
If you or your organisation is using Drupal in deploying and developing your website, and at some point, you forgot to remember the Drupal admin password, you can easily reset it by using PhpMyAdmin:
- Login to your website's cpanel.
- Open phpmyadmin control panel.
- Open the your Drupal's MySQL database.
- Enter the MySQL command: This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
UPDATE users SET pass = md5('newpassword') WHERE uid = 1;
Post Title :
How to manually change the Drupal 6 admin password