The name of the database with which the site works can be found in the configuration file config.php, which is located in the root directory of the site.

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

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

$CFG->dbname = 'frnx_db';


$CFG->prefix = 'mdl_';

The values in these lines stand for the name of the database the site works with, frnx_db and the database table prefix mdl_.

After that, we need to get into the database itself, via phpMyAdmin under MySQL

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 as follows - mdl_user

file

Table mdl_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 changes.

Updated Aug. 23, 2018