Resetting the admin password
Steps to reset the password:
A. Using the MySQL console
UPDATE ust_users SET password=SHA2(CONCAT(salt, 'NEW_PASSWORD'), 256) WHERE id=1;B. Using PHPMyAdmin:
Example:
Last updated