
phphmyadmin-wordpress
In case you you forgot your password or got hacked and you have no way to retrive it back, here is very simply solution to modify your Administrator password manually using phpmyadmin.
First of all logon to your phpmyadmin control panel, and choose the database associated with your wordpress installation, and press the ‘SQL’ button to run below SQL query (Always Make sure to back up your database before you run any command or modify your database)
UPDATE ‘wp_users’ SET ‘user_pass’ = MD5(‘PASSWORD’) WHERE ‘user_login’ =’admin’ LIMIT 1;
You would need to replace password and user login with the username you use to logon to your wordpress admin panel.


