[PHP-WIN] Re: [PHP] Sessions on win32, PHP and IIS

2003-03-19 Thread Diego Fulgueira
For session variables to work: Use the $_SESSION array instead of $HTTP_SESSION_VARS. Also, check your session_path (defined in php.ini, which should be under /WINNT). session_path should point to a directory where user IUSR_MYHOST has writing permissions. There, you should see a file created for

[PHP-WIN] Re: PHP sessions in Windows

2002-12-05 Thread Juan Rosero
Jochem, Thank you for your help. Yes, "session.save_path" has to point to a directory in Windows. This is how I entered in my configuration. session.save_path = c:/WINDOWS/Temp Thank you Jockem and to Rico Derks to point me to the right solution. Best regards, geo "J.Veenhuijsen" <[EMAIL PROTE

[PHP-WIN] Re: PHP sessions in Windows

2002-12-05 Thread J.Veenhuijsen
Check if the directory where PHP stores session info exists in PHP.ini and on the harddisk ( C:\temp ??) Jochem Juan Rosero wrote: Hello, I've been trying to run a PHP program called PHPList 1.9.3 available at http://www.phplist.com/files/. The program does not seem to retain it's sessions when

[PHP-WIN] Re: PHP Sessions

2002-05-19 Thread Matt Parlane
Hi Ben... Do you have a tmp directory in your root directory? if not, PHP won't be able to write the session files there. You need to either change the session.save_path directive in php.ini, or create the /tmp directory, or I think you can store session info in memory - not sure how tho. Matt