Hello,
I ve forgot my admin password (it s idiot i didn t notice it somewhere, i know). Is it possible to reset it somewhere ?
I ve found in Resources Database my username and i ve applied an SQL update at Projeqtor : UPDATE resource SET PASSWORD='newPassword', crypto=NULL
to try to reset Password ... But it didnt work. In the section Password (SQL Database) it s writing newpassword.
Thanks a lot
ES
You must update table resource, set password="yourpassword", crypto=null for your admin user (default is id=1)
This will work
UPDATE resource SET password='newPassword', crypto=Null, isLdpa=0 where id=1;
Then be sure to clean your browser cache and cookies and test.