/
Description of my issue
After installing Opensondage, I got the following error message on the second page of the survey creation process:
You didn’t fill in the first page of the poll
Return to the OpenSondage home page
I went to /var/log/nginx/my-domain-error.log in the administration interface
and I found this error message:
2020/04/10 13:21:43 [error] 32438#32438: *75757 FastCGI sent in stderr: "PHP message: PHP Warning: Unknown: open(/var/lib/php/sessions/sess_la51fe3ed4vkbif9u95afpq8j5, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Thanks to StackOverflow, I found that I had to do:
sudo chown -v www-data:www-data /var/lib/php/sessions
to give the rights in the file.
Session files must belong to the opensondage user.
That’s it!
Cyril
(with the help of deepl.com)
Description du problème
Après avoir installé Opensondage, j’avais le message d’erreur suivant sur la deuxième page de création d’un sondage :
Vous n’avez pas renseigné la première page du sondage
Retourner à la page d’accueil de OpenSondage
Je suis allé voir dans /var/log/nginx/mon-domain-error.log dans l’interface d’administration
et j’ai trouvé ce message d’erreur :
2020/04/10 13:21:43 [error] 32438#32438: *75757 FastCGI sent in stderr: "PHP message: PHP Warning: Unknown: open(/var/lib/php/sessions/sess_la51fe3ed4vkbif9u95afpq8j5, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Grâce à StackOverflow, j’ai trouvé qu’il fallait faire :
sudo chown -v www-data:www-data /var/lib/php/sessions
pour donner les droits dans le dossier.
Les fichiers de sessions doivent appartenir à l’utilisateur opensondage.
Voilà !
Cyril