You can find the name of the database with which the site works in the configuration file config.php , which is located in the directory ./admin/ from the root directory of the site.

/var/www/www-root/data/www/testing.ru/admin/config.php

Open this file, for example, via File Manager, and look for lines in it:

define('DB_DATABASE', 'passreset_ocar1');  


define('DB_PREFIX', 'oc_');  

The values in these lines denote the name of the database the site works with, passreset_ocar1 and the database table prefix oc_

After that, we need to get into the database itself, through phpMyAdmin in the MySQL section

Find the right database in the list and open it

In front of us is the database with which our site works. We need to find the table with the users of our site. Its name is Prefix_user. In our case it is called oc_user

file

Table oc_user, which contains information about all registered users of your site, you need to find the line with your account login and open it for editing by pressing Edit button.

file

To change your password, find the line with the name password

file

  • in the Value field, delete all current characters and enter the desired password there.
  • In the Function field choose MD5 from the list.

file

Press Forward to save your changes.

Updated Aug. 23, 2018