Fri 30 Jun 2006
Quite annoyingly, I was stuck with a Drupal install with an incomplete SMTP setup and a “missing-in-action” admin password.
Thankfully, occy had a solution for my very headache in form of the following SQL:
update users set pass=md5(’NEWPASS’) where uid = 1;
