So you’ve lost your password, huh? There is a way to change it the hard way, if you can’t use the ‘forgot password’-function for whatever reason. Insert this command in to a PhpMyAdmin Sql-window.
CODE SNIPPET:
1 |
UPDATE `wp_users` SET `user_pass` = MD5('NEW_PASSWORD') WHERE `wp_users`.`user_login` =`YOUR_USER_NAME` LIMIT 1; |