Hello,
On an IIS 6.0 server + FastCGI 1.0 Handler + PHP 5.2.9, I would like to define the PHP open_basedir directive for each web site (without using different php.ini files).
I do that in the fcgiext.ini file and it's run fine with the following config :
ExePath=C:\php\php-cgi.exe
Arguments=-d open_basedir="D:\www1\"
The problem is that I want in fact to define two directories in the open_basedir directive. I tried the four following configs of quotes without success :
Arguments=-d open_basedir=D:\www1\;D:\www2\
Arguments=-d open_basedir="D:\www1\;D:\www2\"
Arguments="-d open_basedir=D:\www1\;D:\www2\"
Arguments="-d open_basedir=\"D:\www1\;D:\www2\\""
If I use the directive open_basedir="D:\www1\;D:\www2\" in my php.ini file, there is no problem. So I think that it is only a syntax problem in my Arguments line or a fcgiext.ini parsing problem.
Could you say me what is wrong in my Arguments line?
An other question, How can I do if I have a space in the paths. Is there an escape character to escape quotes?
Thanks