Re: [PHP] possible to override session.auto_start in php.ini

2001-12-05 Thread Kurt Lieber
That worked! Thanks! For those who may be interested, I added the following lines to my .htaccess file: # change some php.ini settings php_flag session.auto_start off Also, this obviously only works with Apache with PHP running as a module. Not sure if there's an equivalent option for IIS

Re: [PHP] possible to override session.auto_start in php.ini

2001-12-05 Thread Andrey Hristov
ber" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, December 05, 2001 7:06 PM > Subject: [PHP] possible to override session.auto_start in php.ini > > > > I've read the manual notes for ini_set, so I have a feeling the answer to my > >

Re: [PHP] possible to override session.auto_start in php.ini

2001-12-05 Thread Andrey Hristov
:06 PM Subject: [PHP] possible to override session.auto_start in php.ini > I've read the manual notes for ini_set, so I have a feeling the answer to my > question is no, but I'd like to make sure. > > I have no control over my ISP's php.ini file, but the fact that they

Re: [PHP] possible to override session.auto_start in php.ini

2001-12-05 Thread Jim
How about another ISP? >I've read the manual notes for ini_set, so I have a feeling the answer to my >question is no, but I'd like to make sure. > >I have no control over my ISP's php.ini file, but the fact that they have >session.auto_start set to 1 in php.ini is causing me problems. > >Is the

[PHP] possible to override session.auto_start in php.ini

2001-12-05 Thread Kurt Lieber
I've read the manual notes for ini_set, so I have a feeling the answer to my question is no, but I'd like to make sure. I have no control over my ISP's php.ini file, but the fact that they have session.auto_start set to 1 in php.ini is causing me problems. Is there any way to override this? T