Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hello,
I install Projeqtor on Docker (nginx + php-fpm + postgreSql).
All is ok except :
incorrect value for 'Log file name', cannot write to such a file : check access rights
The value for log is the default value :
../files/logs/projeqtor_${date}.log
To be sure I have given all rights to the directory projeqtor
chmod 777 -R ./projeqtor
Thanks for your answer.
Greetings
Franck.
Possibly you have SELinux that blcoks write to directory
Thanks for the reply.
I found why it did not work.
In the file docker-compose.yml
web-php:
build: ./build-php
container_name: web-php
volumes:
- "./www:/script:ro"
- "./php.ini:/usr/local/etc/php/php.ini"
I haved (ro) read-only on the script directory
After remove this parameters it's ok