Re: [PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread Justin French
very much frustrated. -Murugesan - Original Message - From: "Justin French" <[EMAIL PROTECTED]> To: "murugesan" <[EMAIL PROTECTED]> Cc: "PHP List" <[EMAIL PROTECTED]> Sent: Thursday, August 14, 2003 2:29 PM Subject: Re: [PHP] php.ini config

[PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread murugesan
Hello all, I am running an apache.In the php.ini file I have defined the include path. Now I want to run another apache in different port. The thing is that for that apache I need another include path in the php.ini file. Is there any way to achieve this to have two include_path in the php.

Re: [PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread Justin French
The include_path can be set via a .htaccess file on a per-directory basis... so, at the root of your "second" apache server, you could have a file called .htaccess with something like: --- php_flag register_globals off php_value include_path '/path/to/your/include/dir/' --- Hav

Re: [PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread Ivo Fokkema
IL PROTECTED]> > Sent: Thursday, August 14, 2003 2:29 PM > Subject: Re: [PHP] php.ini configuration can we have two include_path in > php.in file > > > > The include_path can be set via a .htaccess file on a per-directory > > basis... so, at the root of your "second"

Re: [PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread murugesan
TECTED]> Sent: Thursday, August 14, 2003 2:29 PM Subject: Re: [PHP] php.ini configuration can we have two include_path in php.in file > The include_path can be set via a .htaccess file on a per-directory > basis... so, at the root of your "second" apache serv