This is the best php tip I have found for reseting drupal administrator's password. You will need access to phpMyAdmin or some way to manage your database. Run this query
update users set pass=md5('NEWPASS') where uid = 1;
Post new comment