I can't login to my lightsail wordpress dashboard

0

I have been having troubles logging into my wordpress lightsail dashboard. I haven't changed any password for any account but since 2 days ago the login screen tells me that my user and pw are not correct. pw reset isn't working either it cannot send an email. I need help please.

Ton
已提問 1 年前檢視次數 349 次
2 個答案
0
已接受的答案

Restored an older snapshot of the instance and it worked. I was able to login to wp dashboard with the same credentials I've used from the start.

Ton
已回答 1 年前
0

Can I login to the WordPress database (MySQL)?
If you can, you can change the password directly from the database or create a new user.
Basically, it is not recommended to manipulate the database directly and should only be done in case of emergency.

Always make a backup before executing SQL statements.
Users can be created with the following SQL statement.
Change the information after "VALUES" to yours.

INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`) VALUES ('your username', MD5('your password'), 'your firstname & your lastname', 'your email', '0');

Also, if you get an error with the above SQL statement, such as "user_registered" is not enough, please change to the following SQL statement.

INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`, 'user_registered') VALUES ('your username', MD5('your password'), 'your firstname & your lastname', 'your email', '0','2023-05-01 00:00:00');

If you want to change only the password, you can use the following SQL statement.

UPDATE `wp_users` SET `user_pass` = MD5( ‘your new_password’ ) WHERE `wp_users`.`user_login` = “your username”;
profile picture
專家
已回答 1 年前
  • Hey thanks. I resolved my issue. I restored an older snapshot of the instance and the same login credentials worked. I tried your suggestion but it popped some error out. Thanks though I appreciate your help.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南