Resetting the admin password
Last updated
Was this helpful?
Last updated
Was this helpful?
If you no longer remember the admin password the only way to reset it is by changing it in the database.
You can set a new password for the admin user using this MySQL query:
1. Access the ust_users
table in your database.
2. Copy the contents of the salt
column from the admin user.
3. Decide on your new password, and prefix it with the salt: saltMyNewPassword123
4. Encrypt the salt+password as SHA256.
5. Save that encrypted value in the password field.
So let's say the salt in the DB is f57efb9fa449 and you want your new password to be XXXyyyZZZ
You concatenate them: f57efb9fa449XXXyyyZZZ
Get the sha256 encrypted value using the site linked above: 7ABE3FCED2D3A6FD77D4D703C3C24B6D1634B4F351380C0154A6ECA64AAE3EA4
Save the above hash in the password
column of the admin user in the database: