vote up -1 vote down star
1

i forgot my drupal user id and password. Is there any way to recover it

flag

This would be better suited for superuser – beggs Sep 22 at 5:44

2 Answers

vote up 6 vote down check

http://example.com/<path-to-drupal>/user/password should bring you to a page where you can request a reset/new-password.

Edit: The above path applies if you have 'clean URLs' enabled, if not use http://example.com/<path-to-drupal>/?q=user/password

link|flag
vote up 1 vote down

If you don't have access to the email (or want to bulk-update the passwords) you can update the database with a query like:

UPDATE users SET pass = md5('NEWPASSWORD') WHERE name = 'admin'

link|flag
Don't forget to put the drupal prefeix before the table name. – dlamblin Oct 30 at 19:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.