Hi,
First thing, ProjeQtor is incredible, i really appreciate using it !!
I'm not really a Boss using Linux and i try to apply recommandations after installation ..
So, i created a folder <> at the same level as <>, i have so :
files
mail
public_html
I moved <> to <>
I made a Chmod 777 on files/config
I wrote this in <>
1 <?php
2 $parametersLocation = './files/config/parameters.php';
And when i want to run the Website, i obtain...
ERROR *
parameter file not found at './files/config/parameters.php'
Check file '/tool/parametersLocation.php' or remove it to use '/tool/parameters.php'.
If problem persists, you may get some help at the forum at ProjeQtOr web site
Where is my mistake ?
Thank's a Lot. .
Location is relative to parametersLocation.php path, so it should be
$parametersLocation = '../../files/config/parameters.php';
But you'd better define an absolute path to the file, not a relative one, for instance (adapt to your context):
$parametersLocation = '/var/www/files/config/parameters.php';
It works well. Thank's a lot.