RE: [PHP-WIN] Per site php.ini

2002-12-16 Thread Matt Kynaston
'-c' is the baby. I'll have to give this a try. Think it'll only work the the CGI version, 'though... M > -Original Message- > From: Luis Ferro [mailto:[EMAIL PROTECTED]] > Sent: 16 December 2002 17:05 > To: [EMAIL PROTECTED] > Subject: Re: [PH

Re: [PHP-WIN] Per site php.ini

2002-12-16 Thread Luis Ferro
ini_set can't handle some of the php.ini attributes/properties... specially those that must be defined before the execution of the php page itself... It may or may not be an issue... Cheers... Luis Ferro TelaDigital.Net Gene Dymarskiy wrote: You can include scripts into your php files that wi

RE: [PHP-WIN] Per site php.ini

2002-12-16 Thread Gene Dymarskiy
You can include scripts into your php files that will change config on the fly take a look at ini_set function http://www.php.net/manual/en/function.ini-set.php good luck -Original Message- From: Charles P. Killmer [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 14, 2002 8:24 PM To:

Re: [PHP-WIN] Per site php.ini

2002-12-16 Thread Luis Ferro
Check in the install.txt how to install php in the IIS manually and as an ISAPI. Then, when need to change the ISAPI configuration in the site that you need to use PHP, just add in front of the php.exe the commands to use a specific php.ini file... Exact details eludes me now... but hope that

RE: [PHP-WIN] Per site php.ini

2002-12-16 Thread Charles P. Killmer
, 2002 10:53 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Per site php.ini Hmmmz... afaik in Apache (and only Apache, also only used as module) you can set php.ini variables in .htaccess files. (remember to have AllowOverride directive for that directories to use .htaccess correctly) So to set

Re: [PHP-WIN] Per site php.ini

2002-12-16 Thread Wojciech Owczarek
Hmmmz... afaik in Apache (and only Apache, also only used as module) you can set php.ini variables in .htaccess files. (remember to have AllowOverride directive for that directories to use .htaccess correctly) So to set sth per site, you have to put into it's htaccess: php_value [valuename] [va

RE: [PHP-WIN] Per site php.ini

2002-12-16 Thread Charles P. Killmer
Darn. Some of the directives cannot be set at runtime though. Oh well. Thanks Charles -Original Message- From: Matt Kynaston [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 10:47 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Per site php.ini > I saw nothing in

RE: [PHP-WIN] Per site php.ini

2002-12-16 Thread Matt Kynaston
> I saw nothing in the install.txt about having multiple ini > files. If I > have five websites I want them to have five different ini files. Not possible under IIS as far as I know. Closest thing is to include a file at the top of each page that uses ini_set() to make the changes you want. M.

RE: [PHP-WIN] Per site php.ini

2002-12-16 Thread Charles P. Killmer
: Charles P. Killmer; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Per site php.ini The easiest way is to use the windows installer: it asks about php directory, IIS version, etc., it's very easy to install. Otherwise you should follow the instructions from the install.txt in the php zip package. With

Re: [PHP-WIN] Per site php.ini

2002-12-16 Thread Veselina Jecheva
The easiest way is to use the windows installer: it asks about php directory, IIS version, etc., it's very easy to install. Otherwise you should follow the instructions from the install.txt in the php zip package. With best regards, Veselina At 20:23 12/14/02 -0600, you wrote: >Does anyone know ho