Re: [PHP] Using Sessions under Win98/Apache

2002-05-16 Thread Edward Marczak
On 5/16/02 5:17 AM, "Neil Freeman" <[EMAIL PROTECTED]> wrote: > FYI... > > I'm using sessions successfully using PHP v4.1.0 on Windows NT. Hurmph. Well, the upgrade to 4.2.x did it for me under 98. I just need to check the rest of my code, though. For now, seems pretty harmless. Thanks, tho

Re: [PHP] Using Sessions under Win98/Apache

2002-05-16 Thread Neil Freeman
FYI... I'm using sessions successfully using PHP v4.1.0 on Windows NT. Neil Edward Marczak wrote: > > >* > This Message Was Virus Checked With : SAVI 3.57 May 2002 Last Updated 13th May

Re: [PHP] Using Sessions under Win98/Apache

2002-05-15 Thread Edward Marczak
On 5/15/02 4:30 PM, "SHEETS,JASON (Non-HP-Boise,ex1)" [EMAIL PROTECTED] pressed the keys forming the message: > Sessions under windows were broken for 4.1.x > > They were fixed in 4.2.x so you should upgrade. Great - a definitive answer. Thank you. I'll just have to make note of the differenc

Re: [PHP] Using Sessions under Win98/Apache

2002-05-15 Thread Edward Marczak
On 5/15/02 3:47 PM, "1LT John W. Holmes" [EMAIL PROTECTED] pressed the keys forming the message: > I'm not sure what it could be then. If you try a simple test script, doing > nothing but starting a session and setting a value, does it work? No. > If that still doesn't work, then definitely upg

Re: [PHP] Using Sessions under Win98/Apache

2002-05-15 Thread Edward Marczak
On 5/15/02 2:21 PM, "1LT John W. Holmes" [EMAIL PROTECTED] pressed the keys forming the message: > You probably want to get 4.2, or 4.2.1 if it's out. Didn't think those were considered production quality just yet. > How are you registering variables for the session? Is register_globals on or >

Re: [PHP] Using Sessions under Win98/Apache

2002-05-15 Thread 1LT John W. Holmes
You probably want to get 4.2, or 4.2.1 if it's out. How are you registering variables for the session? Is register_globals on or off in your php.ini. If it's off, you register a variables just by using $_SESSION["var"] = "value"; instead of using session_register("var"); $var = "value"; If regi