2.13.2.6. Changing the admin password in Joomla!
Attention!
Current administrator password impossible to know, since it is not stored on the site in cleartext, only its hash is stored. The password can only be changed to a new one.- Click "CMS install" site menu:
- Click "Password reset":
- Select a user, enter a new password, and click "Change password":
- In the site config file takealook the name of the database to which it is connected.
- Openup database in phpMyAdmin.
- Execute the following SQL query, instead of
new_password
New Password:UPDATE `jos_users` SET `password` = MD5('новый_password') WHERE `username` = 'login';
If the names of the tables in the database do not start with the standard
jos_
, and with a different prefix, make the appropriate change to the SQL query.- Instead
новый_password
enter the desired password. - Instead
login
specify the username used for authorization.
- Check the entrance to Adminpanel.