Re: Re: [PHP-WIN] PHP sessions in Windows

2002-12-05 Thread gary
Opps sorry wrong reply to wrong email :os [EMAIL PROTECTED] wrote on 05.12.2002, 12:01:04: > try here http://pear.php.net/ > > Juan Rosero wrote on 04.12.2002, 23:50:51: > > Hello, > > I've been trying to run a PHP program called PHPList 1.9.3 available at > > http://www.phplist.com/files/. The

Re: [PHP-WIN] PHP sessions in Windows

2002-12-05 Thread gary
try here http://pear.php.net/ Juan Rosero <[EMAIL PROTECTED]> wrote on 04.12.2002, 23:50:51: > 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 running on a Windows environment

Re: [PHP-WIN] Php Sessions - Well, they don't work :-\

2002-10-14 Thread Ignatius Reilly
I experienced problems with PHP non-persistent cookies, so I feel safer writing them explicitly on the client's disk: all the protected pages in one of my applications start by: // session check session_start() ; setcookie( session_name(), session_id(), time()+3600, "/" ) ; ob_start() ; require

RE: [PHP-WIN] PHP Sessions

2002-05-20 Thread Aziz Durmaz
Find your php.ini file and change this line session.save_path = c:\winnt\temp or session.save_path = c:\windows\temp if you use W2k give all permission the temp dir for everyone... -Original Message- From: Ben [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 6:40 AM To: [EMAIL PR

Re: [PHP-WIN] PHP sessions under Win2k AS

2001-08-22 Thread Angie Tollerson
hmmm, this is just a shot in the dark...but do your scripts have a die() statement on them? Somebody correct me if I'm wrong..but if I didn't have die's on all my possible errors or a die at the end of my scripts, sometimes they would open multiple instances. Especially when working with phpDO