How to change root admin user password in Drupal ?
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.
09 Apr, 2010
Related Searches
Free Google Nexus S Root Procedure
user agent mechanize
mac address change windows 7
change mac address ubuntu 9.10
windows 7 camera not installed or camera is occupied by another user
synaptics three finger flick change
windows 7 wifi mac address change 12
accessible of drupal
drupal hosting on windows
drupal preview not working
Free Google Nexus S Root Procedure
user agent mechanize
mac address change windows 7
change mac address ubuntu 9.10
windows 7 camera not installed or camera is occupied by another user
synaptics three finger flick change
windows 7 wifi mac address change 12
accessible of drupal
drupal hosting on windows
drupal preview not working
anybody who might read this now should be warned that Drp7 now uses SHA1 hashes for passwords, not MD5s.
If you set pass=“$S$C6x2r.aW5Nkg7st6/u.IKWjTerHXscjPtu4spwhCVZlP89UKcbb/”
Then your password will be “NEW_TEMP_PASSWORD”
Thank you - works brilliantly
Thank you, thank you, thank you!
Oh, and thank you!
Best
Pam