Re: Re[4]: [PHP] sessions

2004-05-23 Thread Maarten Weyn
no i cleaned the /tmp dir, now the problem occurs again "Richard Davey" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello Maarten, > > Sunday, May 23, 2004, 4:13:27 PM, you wrote: > > MW> it works back after a reboot > MW> but does anybody know how it could have happened? > >

Re[4]: [PHP] sessions

2004-05-23 Thread Richard Davey
Hello Maarten, Sunday, May 23, 2004, 4:13:27 PM, you wrote: MW> it works back after a reboot MW> but does anybody know how it could have happened? Maybe your temp directory got full? Best regards, Richard Davey -- http://www.launchcode.co.uk - PHP Development Services "I am not young enough

Re: Re[4]: [PHP] sessions timeout

2004-03-09 Thread André Ventura Lemos
I'll try to find another way then. Thanks for the replies On Wed, 2004-03-10 at 00:00, Richard Davey wrote: > Hello André, > > Tuesday, March 9, 2004, 11:53:15 PM, you wrote: > > AVL> but since the cookie stores the session id, I thought I could keep that > AVL> ID and bring it back. > > You

Re[4]: [PHP] sessions timeout

2004-03-09 Thread Richard Davey
Hello André, Tuesday, March 9, 2004, 11:53:15 PM, you wrote: AVL> but since the cookie stores the session id, I thought I could keep that AVL> ID and bring it back. You could, but PHP will automatically clear up "expired" sessions as part of its garbage collection routine, which means its entire

RE: Re[4]: [PHP] sessions help

2002-06-13 Thread Lazor, Ed
> Hey, it worked on another server! > I've been working on my local machine's server (localhost), > but when I run it from a different web server, it worked fine. > > Any ideas about which setting(s) may be causing the problem? Nope, but I'm including a copy of my local php.ini for ya to compar

RE: Re[4]: [PHP] sessions help

2002-06-13 Thread Leston Drake
Hey, it worked on another server! I've been working on my local machine's server (localhost), but when I run it from a different web server, it worked fine. Any ideas about which setting(s) may be causing the problem? From my php.ini file: session.save_handler=files session.save_path= C:\PHP\

RE: Re[4]: [PHP] sessions help

2002-06-13 Thread Leston Drake
At 04:35 PM 6/13/2002, you wrote: >Have you tried this on a separate web page to make sure it's not something >server specific? No, but that's a good idea. I will try it. >Here's a script that worked from my computer with register_globals set to on >and off (restarted server between tests for c

RE: Re[4]: [PHP] sessions help

2002-06-13 Thread Lazor, Ed
Have you tried this on a separate web page to make sure it's not something server specific? Here's a script that worked from my computer with register_globals set to on and off (restarted server between tests for confirmation). If this works from your computer, could you resend the code on your

Re[4]: [PHP] sessions help

2002-06-13 Thread Stuart Dallas
On Thursday, June 13, 2002 at 11:07:16 PM, you wrote: > I've stripped the code down to barest bones to try to figure this out: > [getglobal.php] > ... > echo "Node is {$_SESSION['node']}."; > ... > [session.php] > ... > $_SESSION['node'] = "10.2"; > ... > Other than the standard html, head, tit