Advertisement

What to do if you lost your WordPress password? The easier is to use PhpMyAdmin and execute a simple SQL query to update it. Here’s how to proceed.To achieve this recipe, login to your PhpMyAdmin, select your WordPress database and click on the “SQL” button to open the SQL query window.

Then, paste the following code in the window textarea. Don’t forget to modify the password and username before executing it. Also, make sure you have a backup of your database before executing any SQL queries to your database.

UPDATE ‘wp_users’ SET ‘user_pass’ = MD5(‘YOUR PASSWORD‘) WHERE ‘user_login’ =’YOUR USERNAME‘ LIMIT 1;

Previous articleShow related posts without a plugin
Next article4 Simple Ways To Speed Up WordPress

LEAVE A REPLY

Please enter your comment!
Please enter your name here