Re: [PHP] php_admin values solution

2004-05-07 Thread Tim Traver
Curt, This is an apache module that dynamically determines the data directories for a particular incoming request based upon the Host header. After that directory is determined, then I set the admin value of things like "open_basedir" for php. This prevents me from having to make an entry for

Re: [PHP] php_admin values solution

2004-05-07 Thread Curt Zirzow
* Thus wrote Tim Traver ([EMAIL PROTECTED]): > Just in case anyone wants to know the solution, I found one on the apache > list... > > Apparently, from within an apache module, one can use the function > > zend_alter_ini_entry("open_basedir", 13, path, strlen(path), 4, 16); I am curious as why

[PHP] php_admin values solution

2004-05-07 Thread Tim Traver
Just in case anyone wants to know the solution, I found one on the apache list... Apparently, from within an apache module, one can use the function zend_alter_ini_entry("open_basedir", 13, path, strlen(path), 4, 16); This function is included in the zend base libraries, and will let you set t