- Posts: 2
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
Any action in admin page will return you to login screen
This may happen for the following main reasons :
PHP sessions problems
UTF8 encoding problems
IE (6,7 andproblems
PHP Sessions :
Update upload_tmp_dir and session.save_path in php.ini
Create the configured session and upload directories
IIS: Assigned permission to create and modify to IIS guest user account
Apache: Make sure your webserver has permissions to write into the configured directory
Check if the variable "session.use_cookies" in php.ini is set to 1.
Check the variable "session.auto_start" in php.ini. If it is set to 1, change it to 0.
UTF8 Encoding :
If you edit any file (most probably config.php) do not save it as UTF8 to support special language chars! Always save .php files as true ANSI/ISO format. Starting with 1.87 you can set the most important settings inside the application using the 'Global settings' dialog (like site name, administrator name, etc.).
IE Cookies :
IE (6,7 anddoes not support underscore "_" in the server hostname. If it is the case, the cookies are not managed and cookie(s) is(are) not set. So change the server hostname under apache or IIS.