My Wordpress has been hacked, how do I reset my admin password?

If your Wordpress password has been changed to an unknown value, you can always change it by editing the database directly. For this you can use the phpMyAdmin tool in the Control Panel.
Open your WordPress database, go to the SQL tab (located on the top navigation menu).
In the text box write the SQL query: UPDATE `wp_users` SET` user_pass` = MD5 ('new_password_here') WHERE `wp_users`.`user_login` =" admin_username "; 'new_password_here' - enter your new password that you want to use. "admin_username" - specify the username for which the password should be changed.
When you're done editing, click on the GO button to execute the request. If a green message is displayed (that the request was successfully completed), then you will be able to log into WordPress with a new password.

  • 5 Users Found This Useful
Was this answer helpful?

Related Articles

My site is not working on this PHP version

You can change the PHP version yourself in the Control Panel. To do this, go to Control Panel -...

Help, the cron is not working

If you run a job through PHP, for example php -f /home/username/public_html/file.php and you...

Domain does not work with "www"

If you cannot access your site using your domain without “www”. (Example.com) but with "www." it...

I am getting Internal Server Error (500)

This error is generalized when there is a problem the server cannot process a request to the site...

Domain has status redemption period / pending delete

The domain is scheduled for deletion, so its validity period has expired and it has not been...