I can't sing in to limesurvey. LS refuses all access.
In resetadminpw.php script i have output like that:
SQL command failed: UPDATE users set \"password\"='[password hash]' where uid=1 Reason: ERROR: syntax error at or near "\" LINE 1: UPDATE users set \"password\"='[password hash fragment]... ^
The problem is in 'set \"password\"', it shoud be 'set password'. \" are bad here.
When I remove \" from this query new password is written to the database, but I still cannot sing in.
I tried to insert sha256 hash of password directly into database via psql client, but contet of users table is the same (password hash in db us correct)
I'm using php5.3 and postgreSQL 9.0 (i tested also php5.2 and postgresql 8.3 and 8.4).
Could anyone help me solve this problem?