mysql -umyUserName -paVeryStrongPassword
show databases;
use myWordpressDB;
SELECT ID, user_login, user_pass FROM wp_users;
UPDATE wp_users SET user_pass=MD5('YourNewStrongPassword') WHERE ID = 1;
SELECT ID, user_login, user_pass FROM wp_users;
Resetting the Password via SSH: Access the server as root: Use an SSH program like PuTTY to connect to your server as the root user. R...
No comments:
Post a Comment