To change the admin password in Joomla !, do the following:
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.
новый_password
enter the desired password.login
specify the username used for authorization.