Forums

[resolved] Lost my admin password cannot login on my own site (17 posts)

  1. Anonymous
    Unregistered
    Posted 7 years ago #

    Please send me some feedback on this topic. I forgot to record my password for my admin
    for my website. Now I cannot get in to edit my site. What do I do? I tried to re login on
    getting a new password and got nowhere, because I had the same profile address for
    my email which creates a word press errror! Help! Thanks any feedback to correct this
    or how to access or shortcut this troubleshooting problem is appreciated.

  2. Mark
    Support Maven
    Posted 7 years ago #

    Got phpmyadmin on your website cpanel ?
    If so, this will do the trick:
    http://www.tamba2.org.uk/wordpress/phpmyadmin/

  3. humanveal
    Member
    Posted 7 years ago #

    If you are handy with Mysql you can go into there and select "USERS". Im not sure if WP encrypts, I would suspect not. You can get eth username and password from there or change your email address.
    Or... Is there a file that can be reinstalled that wil wipe out just the log in feature? Im not to hip with WP.
    I had the same issue but realized I logged in as ADMIN originally and after re-gaining an interest in my blog had forgotten that although the uername is Admin I made it show as MILKFED from the profile... I have to log in as ADMIN though, not Milkfed.
    Sorry if none of this was any help...

  4. adeydas4
    Member
    Posted 7 years ago #

    As an addition to the new release of WP, a 'send my password' feature would be handy.

  5. Mark
    Support Maven
    Posted 7 years ago #

    Isn't it there already ?
    Fill in your email, lose your password, click to send it to you.

  6. RolandU
    Member
    Posted 7 years ago #

    I had the same problem once, but I did not setup my email-address.....
    WP encrypts its passwords, so you cannot just look it up in mysql.
    1 - Create a new account and remember it's password (let's call that account 2)
    2 - Look up the encrypted password for account 2 in the mysql-table
    3 - Overwrite the encrypted admin password with the encrypted password of account 2.
    4 - admin now has the same password as account 2.

  7. Anonymous
    Unregistered
    Posted 7 years ago #

    thanks for the PHPMYadmin info.. It worked great. I couldn't get the new emailed password to work .. There was no login only a password emailed to me. But it failed to work.. The PHPMYADMIN worked :-)

  8. midori
    Member
    Posted 7 years ago #

    MD5 encryption, if you want to know. You can find site where you can have your passwords md5 encrypted.

  9. Roar
    Member
    Posted 7 years ago #

    *weeps*
    Oh, if only I had read this before I deleted my entire install.
    *sigh*

  10. Anonymous
    Unregistered
    Posted 7 years ago #

    I had exactly the same problem, though it was right when I installed the first time, so I didn't lose anything (i had imported everything, and still had the file of course). I kept my newly fomatted, index.php and stylesheet, so it worked out.
    Lesson learned: change your password really, really fast.

  11. Anonymous
    Unregistered
    Posted 7 years ago #

    It's easy
    in mysql, find the wp_users table in your database
    use a tool like md5sum in linux to generate new password
    it's that simple!
    but for me, somehow I had a corrupted wordpress install, had to upgrade

  12. evilJ
    Member
    Posted 7 years ago #

    If you have access to your MySQL server either through the command line or other interface of some kind, execute the following query:

    UPDATE wp_users SET user_pass=md5('new_password') WHERE user_login='admin';

    Where new_password is your choice of password.

  13. Canned_Heat
    Member
    Posted 6 years ago #

    ONE IMPORTANT NOTE:
    the username and password you are using may indeed be correct.

    It is important to note that zonealarm (firewall) can prevent loging in, even with user and pass is correct. Generally, in zonealarm you need to allow cookies and/or stop ad and popup blocking. For more info, search these forums with the keyword zonealarm.

  14. Success
    Member
    Posted 6 years ago #

    I used the lost password feature and workpress send me this email with this senctence only. There is no password.

    Password Lost and Changed for user: admin

  15. daveand5
    Member
    Posted 5 years ago #

    I'm not a php programmer, but I have traced the zone alarm problem this far:
    if animations or popups are check marked the log in is redirected back to login
    (http://localhost/wordpress/wp-login.php?redirect_to=%2Fwordpress%2Fwp-admin%2Fplugins.php)
    Maybe the project people can help, I think maybe this redirect, could be the culprit, and any popup blocker should cause this same problem.
    if not then the cause of the redirect must be the routines that are looking for something else that ZA blocks at same time a popup or animation is commonly blocked.

  16. buzink
    Member
    Posted 5 years ago #

    In addition to the solution of RolandU, if you have registering of users turned off: In phpMyAdmin go to wp_options and set 'users_can_register' to 1.

  17. buzink
    Member
    Posted 5 years ago #

    I would recommend the solution of evilJ, though. In phpMyAdmin, select your wordpress database and run the following sql-query:

    UPDATE wp_users SET user_pass=md5('new_password') WHERE user_login='admin';

    Where new_password is your choice of password.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.