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.

  • 92 Пользователей нашли это полезным
Помог ли вам данный ответ?

Статьи по Теме

PHP Fatal error: Cannot redeclare

Если Вы видите ошибку PHP Fatal error: Cannot redeclare function это значит, что есть проблема в...

Я вижу пустую / белую страницу (если сайт создан на PHP)

Если Ваш сайт основан на PHP, наиболее вероятная причина проблемы, что Вы где-то пропустили...

Помогите, cron задание не работает

Если Вы запускаете задание через PHP, например  php -f /home/username/public_html/file.php и не...

Я получаю Internal Server Error (500)

Эта ошибка является обобщением, когда возникают неполадки сервер не может обработать запрос к...

Помогите с моим шаблоном

К сожалению, мы не занимаемся услугами по созданию сайтов. Если Вы самостоятельно не можете...