• Resolved hacker who am i

    (@hackerwhoami007)


    hello please can someone help me out, the reset password is not functioning properly i try reseting my admin password it say my new password have been sent to my mail but up till now i found nothing and i cant login as an admin please is there any way i can get my access as an admin back

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    If you have phpmyadmin access then you can change your website password easily.

    1. Head over to PHPMyAdmin using your cPanel (or the hosting panel that your hosting service supports).
    2. Click on your WordPress database.
    3. Navigate to and click the table wp_users.
    4. Edit the row with your WordPress username.
    5. Now, in the user_pass field, change the function to MD5 and enter your new password in the Value section.
    6. Click “Go” or similar option at the bottom to update the table values.

    Method#2 – The Short way through MySQL

    1. Follow the first 3 steps of the above method.
    2. Go to SQL or MySQL section in your PHPMyAdmin.
    3. Now, enter the below given query:

    
    UPDATE <code>wp_users</code> SET <code>user_pass</code>= MD5('yourpassword') WHERE <code>user_login</code>='yourusername';

    Put your new password in place of yourpassword and replace yourusername with your WordPress username.

    4. Click “Go” or similar option at the bottom to execute the query.

    Above both method will work.

    Thread Starter hacker who am i

    (@hackerwhoami007)

    Thank you so much the method1 really work like magic i really appreciate @princebhalani143

    @princebhalani143 Enjoy coding…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Password Recovery not working’ is closed to new replies.