Leave a Reply

3 comments

  1. Occasionally I’ve seen issues doing a manual reset of the password if salts have changed, or if there was an issue with the account before the reset. Some things to try:

    • Are you sure you reset the password for the main admin account, usually ID #1? Trivial, I know, but has happened to me in the past.
    • Try using the Emergency Password Reset Script, as it works a little better than a manual reset.
    • Try changing the salts in wp-config.php and reset the password again, see if it clears out some cookie issues you may be having. Most likely your problem can be traced to cookie issues if it is accepting the password but not letting you in. Clear all your cookies out as well.
  2. From what I can see the codex articles for resetting your password are from 2005 and more than likely don’t apply as WP doesn’t use MD5.

    The most simple way of doing it would be to simply execute the wp_hash_password() function and put that directly in to the database. I suggest setting up a simple script like so:

    <?php
    include('wp-load.php');
    
    echo wp_hash_password( 'password' );
    

    Put this in your webroot (with the other WP files), copy and paste the output into your row in the database. Delete the file when you’re done.