RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
essage- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 5:03 PM To: Golawala, Moiz M (IndSys, GE Interlogix); Daniel Guerrier; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not remembering sessions --- "Golawala, Moiz M (IndSys, GE Interlogix)" <[EMAI

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Vail, Warren
stroyed by the browser. hope this gets you back and running. Warren -Original Message- From: Golawala, Moiz M (IndSys, GE Interlogix) [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:49 PM To: Vail, Warren; Curt Zirzow; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not rememberin

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Chris Shiflett
--- "Golawala, Moiz M (IndSys, GE Interlogix)" <[EMAIL PROTECTED]> wrote: > I am sorry to call it a cookie.. I see the data in a session file > (not a cookie) OK, so you just look in this file manually? > I don't have a html file. I simply call the .php file by typing the > url as http://localhos

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
rsday, October 23, 2003 4:49 PM To: Daniel Guerrier; Golawala, Moiz M (IndSys, GE Interlogix); [EMAIL PROTECTED] Subject: Re: [PHP] PHP not remembering sessions --- Daniel Guerrier <[EMAIL PROTECTED]> wrote: > Use > $_SESSION['var'] > > instead of > > $_SESSION

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
] * > 561-912-5972 * 561-912-1650 * > -Original Message- From: Vail, Warren [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 4:42 PM To: Golawala, Moiz M (IndSys, GE Interlogix); Curt Zirzow; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not remembering sessions while this

Re: [PHP] PHP not remembering sessions

2003-10-23 Thread Chris Shiflett
--- Daniel Guerrier <[EMAIL PROTECTED]> wrote: > Use > $_SESSION['var'] > > instead of > > $_SESSION["var"] That won't make any difference. As for the original question, I don't notice any immediate problems with the code: > > in page1.php: > > > $_SESSION["var"] = "Please help"; ?> > >

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Vail, Warren
logix) [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:31 PM To: Vail, Warren; Curt Zirzow; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not remembering sessions This is what is defined in the php.ini file for save handler routines.. I am newbie, I left it with default v

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
-Original Message- From: Vail, Warren [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 4:27 PM To: 'Curt Zirzow'; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not remembering sessions are you using "session save handler" routines? If not make sure you have a &quo

Re: [PHP] PHP not remembering sessions

2003-10-23 Thread Dennis Sterzenbach
"Moiz M Golawala" <[EMAIL PROTECTED]> wrote: > This is what is defined in the php.ini file for save handler routines.. > I am newbie, I left it with default values: > > session.save_handler = files > session.save_path = c:/Program Files/Apache Group/Apache2/htdocs/Alarms/ > > thanks > moiz Change

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
PROTECTED] Sent: Thursday, October 23, 2003 4:27 PM To: 'Curt Zirzow'; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not remembering sessions are you using "session save handler" routines? If not make sure you have a "/tmp" directory on your server, in fact you can check

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Vail, Warren
al Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 1:30 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] PHP not remembering sessions * Thus wrote Daniel Guerrier ([EMAIL PROTECTED]): > Use > $_SESSION['var'] > > instead of > > $_SES

Re: [PHP] PHP not remembering sessions

2003-10-23 Thread Curt Zirzow
* Thus wrote Golawala, Moiz M (IndSys, GE Interlogix) ([EMAIL PROTECTED]): > > I noticed that 2 cookies were created one for each session start. When I opened one > of the cookies, I noticed that the data "Please help" was in the session cookie. > Somehow php thinks a session is not already crea

Re: [PHP] PHP not remembering sessions

2003-10-23 Thread Dennis Sterzenbach
sday, October 23, 2003 1:11 PM To: Daniel Guerrier; [EMAIL PROTECTED] Subject: RE: [PHP] PHP not remembering sessions It seems that there is a problem with the session management on windows/apache. I was surfing the web to find an answer, and I noticed that there are couple of other people who have

Re: [PHP] PHP not remembering sessions

2003-10-23 Thread Curt Zirzow
* Thus wrote Daniel Guerrier ([EMAIL PROTECTED]): > Use > $_SESSION['var'] > > instead of > > $_SESSION["var"] This doesn't matter. Curt -- "My PHP key is worn out" PHP List stats since 1997: http://zirzow.dyndns.org/html/mlists/ -- PHP General Mailing List (http://www.php.net

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Pablo Gosse
PROTECTED] Subject: RE: [PHP] PHP not remembering sessions It seems that there is a problem with the session management on windows/apache. I was surfing the web to find an answer, and I noticed that there are couple of other people who have the same problem. But alas, there were no answers posted

RE: [PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
why this is happening. Thanks Moiz -Original Message- From: Daniel Guerrier [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 4:04 PM To: Golawala, Moiz M (IndSys, GE Interlogix); [EMAIL PROTECTED] Subject: Re: [PHP] PHP not remembering sessions Use $_SESSION['var']

Re: [PHP] PHP not remembering sessions

2003-10-23 Thread Daniel Guerrier
Use $_SESSION['var'] instead of $_SESSION["var"] --- "Golawala, Moiz M (IndSys, GE Interlogix)" <[EMAIL PROTECTED]> wrote: > Hi All, > > I have a problem with PHP not remembering sessions. > for example: > > in page1.php: > > $_SESSION["var"] = "Please help"; ?> > >maxleng

[PHP] PHP not remembering sessions

2003-10-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
Hi All, I have a problem with PHP not remembering sessions. for example: in page1.php: in page2.php what I see above is only data for loopCount. I am not able to see the "Please help" on page2 I noticed that 2 cookies were created one for each session s