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