How to change root admin user password in Drupal ?
2010
09
Apr
1
In order to reset the root or superadmin password on a drupal system, login into the database by looking at the settings.php. You can use phpMyAdmin or any other MySQL utilities like SQLYog, or MySQL command line.
Run the following query to reset the password.
UPDATE users SET pass = MD5('password') WHERE uid = 1
The user id of administrator is always 1.
Password field in drupal is stored as MD5 of the actual string password. So running the above query would set your password as password of the superadmin user.
Similar Posts
Related Searches
- User Agent Mechanize
- Windows 7 Camera Not Installed Or Camera Is Occupied By Another User
- Change Mac Address Ubuntu 9.10
- Synaptics Three Finger Flick Change
- Mac Address Change Windows 7
- Windows 7 Wifi Mac Address Change 12
- Accessible Of Drupal
- Drupal Hosting On Windows
- Drupal Cannot Modify Header
- Drupal Preview Not Working
- Drupal Drag And Drop Module
- Drupal Terminal Module Uninstall
- Drupal Http Response Object
- Free Drupal Websites Hosting
- Sql Injection Database Book Drupal

Comments
Thank you - works brilliantly
Thank you, thank you, thank you!
Oh, and thank you!
Best
Pam
Post new comment