Re: [PHP-WIN] Problem starting session

2001-06-21 Thread ADSL Online.Net
Ben, The solution is to change the path of the variable "session_data" in your php.ini file. Standard this path is set to /tmp which does not work. Copy your session_data directory to e:/inetpub and point the session_data variable in php.ini to that path. regards, Marnix > I am getting the fol

Re: [PHP-WIN] Problem starting session

2001-06-21 Thread Ruslan Ohitin
Hello Ben, You must specify path to store session data in php.ini: session.save_path = /path/to/store/session/data (/tmp by default) php must have write permissions on this dir. -- Best regards, Ruslan Ohitin [EMAIL PROTECTED] BE> I am getting the following on a Windows 2000 Professional i

Re: [PHP-WIN] Problem starting session

2001-06-21 Thread Jason Brooke
does the directory c:\tmp exist? check php.ini for how to configure the directory temporary session information is kept this is all in the online manual by the way - http://www.php.net/manual > I am getting the following on a Windows 2000 Professional installation when > I try to start a sessio