Thursday, March 27, 2008
Reset Drupal Admin Password via MySQL
Execute this SQL command in MySQL either from the command line or from a tool like PHPMySQL to reset the admin password:update users set pass=md5('NEWPASS') where uid = 1;
'users' may be prefixed by something like ' drupal_ ' depending on your setup.
Labels: Drupal, MySQL, Reset Password
Article Link posted by Edward at 12:41 PM