How do I reset Joomla administrator password?

How to reset Joomla administrative password

Start by logging into your control panel. Once logged in, click on the "MySQL" icon. In the MySQL section click on "phpMyAdmin" at the bottom.

Once in phpMyAdmin you will select the Joomla's database from the menu on the left by clicking on its name. Click the SQL tab at the top navigation bar.

In the text field write the following SQL query:

UPDATE `jos_users` SET `password` = MD5( 'newpassword' ) WHERE `jos_users`.`username` = "myadmin" ;

"newpassword" - replace this with the new password you wish to use.
"myadmin" - replace this if your admin username is different.

Once you are ready, click on the GO button to submit the query.
If everything goes fine without errors, you should be able to login to Joomla with the new password.

These steps work with Joomla version 1.5 and Joomla version 1.0.

  • 314 Users Found This Useful

Was this answer helpful?

Related Articles

osCommerce - This is a potential security risk - please set the right user permissions on this file

This error is caused when the /includes/configure.php is world writable. To correct this, log...

How to turn off magic quotes gpc for Joomla 3

Add the line "php_flag magic_quotes_gpc off" to the .htaccess file. If one does not exist create...

Moodle: Notice: Only variable references should be returned by reference

Notice: Only variable references should be returned by reference The issue is with Moodle...

Tiki Wiki: Notice: Only variable references should be returned by reference

You can find the latest version of ADODB here. To modify the function to not return a...

How to reset the admin password in Drupal

To change the administrative password for your current Drupal installation you should:1. Go to...