Hello,
I would like to reset a user password directly via the SQL database.
I try to go on this way : https://matomo.org/faq/how-to/faq_191/ but this return me an error.
I can see my user in the column “login”, on table “matomo_user”.
Here is how I’m trying to do :
SELECT * FROM matomo_user
UPDATE password
SET password = ‘the md5 hash result’
WHERE login = myuser;
Do you have an idea of how can I proceed ?
Thanks
1 post - 1 participant