Here is the sql to reset admin password for wordpress:
update wp_users set user_pass=md5("NEWPASS&qu ot;) where ID=1;
Even if the passwords are salted, you can still replace the password with an MD5 hash.
- sandip's blog
- Login or register to post comments