Retrieving Passwords in Wordpress
With Wordpress, you primarily have just one option. You enter your email address or your username to have a password reset link mailed to your email address. Activating the mailed link in a browser will initiate another email from Wordpress which carries your password.
This option may not work all the time. There are times when your server might not support SMTP service that is required for the email to be dispatched.
We have alternate ways of achieving a password resets, but through the backend. Duh! not the Wordpress backend but your MySQL database backend.
Log into your database backend, you should see something similar to the one below depending on the version that you use.
Click on wp_users table and then hit browse.
You should see something similar to the image shown below. I have disfigured my database’s personal information and in it’s place, you should see some real text. Click on the icon that is marked by a big black arrow. Excuse my graphic design skills, it isn’t too pleasing to anybody’s eyes. :)
If you have problems in carrying this out, let me know.
Related posts:
- Self Hosted Wordpress Blogs Under Attack
- Troubleshooting the Wordpress Blank Page
- Top 10 Most Commonly Used Passwords
- WordPress : 10+ life saving SQL queries
- Migrating from Wordpress to Joomla
Filed Under: Wordpress



[...] backend and changed the password using MD5 hash string. This inspired me to write a small post on retrieving passwords on Wordpress through MySQL. Let me know if you have similar situations. I can help you and at the same time, you can inspire [...]