Re: [PHP-DB] IIS and php sessions

2004-11-15 Thread Bastien Koert
save path variable for sessions by default is /tmp which is a linux default try changing it to /temp bastien From: John Holmes <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: "Adil" <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> Subject: Re: [PHP-DB] IIS and php sessions

Re: [PHP-DB] IIS and php sessions

2004-11-15 Thread Frank M. Kromann
Hi Adil, You need to configure session.save_path in php.ini. This setting needs to point to a directory where the IIS user can write files. If you are running the ISAPI version of php you also need to restart the web service for the changes to take place. - Frank > Hey everyone, > > I'm trying

Re: [PHP-DB] IIS and php sessions

2004-11-15 Thread Mike Smith
I'm pretty sure this is enabled by default in PHP for Windows, I think you'll need to check the IUSR_[machine_name] persmissions on the sessions folder. I'm headed in the other direction. I'm re-writing an app with a database abstraction layer with hopes of moving to postgres. -- PHP Database Mai

Re: [PHP-DB] IIS and php sessions

2004-11-15 Thread John Holmes
> From: "Adil" <[EMAIL PROTECTED]> > I'm trying to get sessions in php working on IIS > and I've noticed that that needs to be configured > manually for IIS. But what exactly does that mean? > I can't find a good step by step source about > this issue so any help would be greatly appreciated. 1