Home
How to... J!
How to... J! | How to reset your Joomla Administrator password |
Finding the Password
Resetting the PasswordIn the password field there will be a string of characters. You won't be able to retrieve your old password. However, you will be able to reset the password to a new one using mySQL's built in MD5 function: UPDATE example_users SET password=MD5('yourpassword') WHERE usertype = "Super Administrator"; To be safe, only use alphanumeric characters, no... " - ! # " etc. You have just reset your Joomla password! Go to your Joomla! domain at yourdomain.com/administrator and login with the new password. You should find you have logged in as a Super Administrator. |