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
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
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
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
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