Welcome to Solo Webdesign! I'm a freelance web development, doing my best to bring you exactly what you desire! I specialize in web development, designing creative and corporate online brochure sites, ecommerce sites and client managed sites cms implementation, – for both small businesses and large. See my portfolio. I love designing interactive Web sites, and it is fantastic that people pay me to do something I love. I have been working full-time freelance for almost 3 years now and I have been doing part-time freelance since 2004. Please visit my quote page if you are looking for me to serve your needs. Thank you for visiting me at solowebdesign.blogspot.com and if you liked what you saw tell your friends about me! - Kris

How to Recover Joomla Admin Password

About the joomla admin password, firstly, you must know that The passwords are stored using a one-way MD5 hash which prevents recovering the password. So you cannot recover the existing password, but you can reset it to a new password by editing the password field in the database.

But for this proccess you have to encript the new one into MD5 code. You can not just type your new password into the MySQL database field. Set the password to a known value and then you may log-in using that new password.

The password is stored in the MySQL database jos_users table password field. (change this for your table prefix if different)

Use a MySQL utility such as phpMyAdmin or MySQL Query Browser to edit this field.
Open the table, find your admin username, and then select that row for editing.
The password must be hashed, you cannot simply enter text into this field.

Set the password to a known value

- password = "this is the MD5 hashed password"
------------------------------------------------------
- admin = 21232f297a57a5a743894a0e4a801fc3
- secret = 5ebe2294ecd0e0f08eab7690d2a6ee69
- OU812 = 7441de5382cf4fecbaa9a8c538e76783

Paste the hashed password into the field, save the change, and log-in using the new password.
Immediately change your password to something more secure!

or . . .
Set the password to your own value

Online MD5 tools

here are a couple online tools to create MD5 hashed values:
- JavaScript MD5 - http://pajhome.org.uk/crypt/md5/
- MD5er - http://www.md5er.com/
Use the tools to create your own strong hashed password.
Paste the result into the password field, save, and log-in with your new password.

Free MD5 utilities - for download

- MD5 & Hashing Utilities - http://www.digital-detective.co.uk/freetools/md5.asp
- SlavaSoft HashCalc - http://www.slavasoft.com/hashcalc/overview.htm
Download and use to make your own hashed password.

Other MD5 tools

There are many free MD5 tools online and as free downloadable utilities.
Google for "MD5 hash tool" and you will find many available.

source: forum.joomla.org