RE: disappearing session variables

2002-02-04 Thread Christopher Olive
do you have SETDOMAINCOOKIES="YES" in your CFAPPLICATION tag? if so, take it out. i remember hitting this problem at some point in the past. christopher olive, cto, vp of web development atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: c talk [

RE: disappearing session variables

2002-02-04 Thread Lon Lentz
k that had http://mydomain.com. You would get a new set of cookies and a new session assigned to you. > -Original Message- > From: c talk [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 04, 2002 5:24 PM > To: CF-Talk > Subject: RE: disappearing session variables > &

RE: disappearing session variables

2002-02-04 Thread c talk
Lon, et al --- Lon Lentz <[EMAIL PROTECTED]> wrote: > > Is Netscape issuing a new cookie on the second page because it thinks > that the domain has changed? The domain doesn't change between pages. I didn't think browsers issued cookies? * john * > > -Original Message- > > From: c

RE: disappearing session variables

2002-02-04 Thread Lon Lentz
Is Netscape issuing a new cookie on the second page because it thinks that the domain has changed? > -Original Message- > From: c talk [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 04, 2002 4:16 PM > To: CF-Talk > Subject: disappearing session variables > > > When I browse t

RE: Disappearing Session Variables!

2001-02-08 Thread Dylan Bromby
if your cf server restarts itself sessions will be lost. that happened to me. i now use cookies that have time/date info in the cookie. -Original Message- From: Robyn Follen [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 8:38 AM To: CF-Talk Subject: Disappearing Session Va

Re: [Disappearing Session Variables!]

2001-02-08 Thread Alex
put locks around all your session var read/writes. also is you URL changing domains or from IP to name-based? i don't know if this makes a difference but it might. Robyn Follen <[EMAIL PROTECTED]> wrote: Hey Folks, Does anyone know if there is a limit to the number of session variables that on

RE: disappearing session variables.

2000-11-09 Thread Byron Stuart
This is just a guess... If you are not using cookies to retain the CFTOKEN and CFID, you'll need to pass them in the url. If you don't have cookies on, and you aren't retaining the variables in the URL, CF Server will not be able to tell who is connecting, and may issue a new CFTOKEN and CFID ea

RE: Disappearing Session Variables

2000-03-29 Thread Won Lee
cation.cfm file you did not enclose them around tags and they are being reset for every page -Original Message- From: Avi Flax [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 29, 2000 12:12 PM To: [EMAIL PROTECTED] Subject: Re: Disappearing Session Variables It's also possible that

Re: Disappearing Session Variables

2000-03-29 Thread Todd Ashworth
Ashworth - Original Message - From: "Brian L. Wolfsohn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 29, 2000 12:16 PM Subject: Re: Disappearing Session Variables > At 11:16 AM 3/29/2000 , you wrote: > > I just came across a similar situation

Re: Disappearing Session Variables

2000-03-29 Thread Brian L. Wolfsohn
At 11:16 AM 3/29/2000 , you wrote: I just came across a similar situation a few minutes ago... Check to see if you have an stray application.cfm file which is NOT enabling session management. This is presuming that there is only a few seconds between the submission to the next page. >Anyone

Re: Disappearing Session Variables

2000-03-29 Thread Avi Flax
It's also possible that your CF server is being restarted occasionally. Avi At 11:16 AM 3/29/00 , you wrote: >Anyone know why/how session variables can >magically disappear? > >I have a page that sets session variables >then submits it to the next page for processing. > >Now and then, I would ge