I try to install on Linux Ubuntu 11.04.
I have this message on intall screen :
incorrect value for 'Parameter file name', does not include a valid directory name
I change it to /home/projects/files/config/parameters.php
Do you have a idea ?
Thanks
Hi,
In your case,directory /home/projects/files/config must exist, and user running php must have write access to it.
Regards.
Thanks, any change after i create this directory.
A other way ?
Hi,
Try a "chmod 777" to this directory, to be sure you don't face an access issue.
Is the message always the same ?
Hi,
Error message :
"incorrect value for 'Parameter file name', does not include a valid directory name"
malatesta@cymerp2011:/home/projects$ ls -afg
total 12
drwxrwxrwx 5 www-data 4096 2011-08-20 21:24 files
drwxrwxrwx 10 malatesta 4096 2011-08-20 10:40 ..
drwxrwxrwx 3 www-data 4096 2011-08-20 10:40 .
malatesta@cymerp2011:/home/projects$ cd files
malatesta@cymerp2011:/home/projects/files$ ls -afg
total 20
drwxrwxrwx 3 www-data 4096 2011-08-20 10:40 ..
drwxrwxrwx 2 www-data 4096 2011-08-20 21:43 logs
drwxrwxrwx 2 www-data 4096 2011-08-20 10:42 attach
drwxrwxrwx 2 www-data 4096 2011-08-20 21:30 config
drwxrwxrwx 5 www-data 4096 2011-08-20 21:24 .
malatesta@cymerp2011:/home/projects/files$ cd config
malatesta@cymerp2011:/home/projects/files/config$ ls -afg
total 8
drwxrwxrwx 5 www-data 4096 2011-08-20 21:24 ..
drwxrwxrwx 2 www-data 4096 2011-08-21 08:22 .
my directories details all seems ok...
All seems right.
Could you send me your a print screen of you config screen, after having removed confidential settings (access to database,..) ?
Thx.
Let me know your email adress.
Thanks
support@toolware.fr
Is done have you received ?
Yes,
I received your information. Thx.
Nothing wrong appears. Still investigationg.
Regards
Hi,
Can you check php.ini : is the safe mode enabled ?
safe_mode = On
If so, you must either set it to off
safe_mode = On
or add your directory in safe_mode_include_dir
safe_mode_include_dir=/home/projects/files
Hi,
I finaly found ! It's a programming issue.
In fact this does not appear if your way to the parameter is relative (../../../home/project/file).
So its one way to have a work around : define a relative (and not absolute) path.
Other solution : correct /tool/checkConfig.php, line 84, replace
if (! $rep or $rep='.') {
with
if (! $rep or $rep=='.') {
This fix will be included in V1.7.0.
Regards.