Re: session time out.

2007-01-15 Thread Mary Jo Sminkey
> I'm working on an application that has some long forms in which the > user could exceed the session time out limit. I'm working on creating > a custom tag that will warn the user that there session is about to > expire. I want to have a popup open and ask them if they

RE: session time out.

2007-01-15 Thread Ben Nadel
PROTECTED] Sent: Monday, January 15, 2007 12:41 PM To: CF-Talk Subject: session time out. I'm working on an application that has some long forms in which the user could exceed the session time out limit. I'm working on creating a custom tag that will warn the user that there session i

session time out.

2007-01-15 Thread heath stein
I'm working on an application that has some long forms in which the user could exceed the session time out limit. I'm working on creating a custom tag that will warn the user that there session is about to expire. I want to have a popup open and ask them if they would like to keep

RE: Recovery from a session time-out?

2005-02-05 Thread Martin Parry
-Original Message- From: Steve Bryant [mailto:[EMAIL PROTECTED] Sent: 05 February 2005 13:21 To: CF-Talk Subject: Re: Recovery from a session time-out? In addition to that approach, I would suggest the following bit of JavaScript: function keepAlive() { var imgAlive = new Image

Re: Recovery from a session time-out?

2005-02-05 Thread Steve Bryant
In addition to that approach, I would suggest the following bit of JavaScript: function keepAlive() { var imgAlive = new Image(); var d = new Date(); imgAlive.src = '/alive.cfm?d=' + d; } setInterval("keepAlive()", 20*60*1000); Before the script is added to your site, add a small aliv

RE: Recovery from a session time-out?

2005-02-04 Thread Dawson, Michael
I setup my intranet so that, even if the session times-out, it will be transparent to the end-user. I do this by keeping a separate session cookie. When the session times-out, then the user accesses another page in the application, my scripts will reload the data in the session scope again. Th

RE: Recovery from a session time-out?

2005-02-04 Thread Dave Watts
> I am stuck with a 30 minute timeout on the Crystaltech > Hosting Service CFMX servers. I have contacted them asking > for a longer timeout, but they will not do it. > > I don't want to rewrite everything right now to get rid of > session variables, so: > > Is there a graceful way to recover

Recovery from a session time-out?

2005-02-04 Thread Richard Colman
I am stuck with a 30 minute timeout on the Crystaltech Hosting Service CFMX servers. I have contacted them asking for a longer timeout, but they will not do it. I don't want to rewrite everything right now to get rid of session variables, so: Is there a graceful way to recover from a session va

Re: increase session time

2004-07-21 Thread Doug James
The cf-admin setting 'Default Timeout' -> 'Session Variables' (found under memory variables on CFMX) is actually the maximum setting and not just a default. If you want longer sessions you can either set the cf-admin setting high and then lower in the application.cfm or you can use some techniq

RE: increase session time

2004-07-21 Thread Lofback, Chris
PROTECTED] Sent: Wednesday, July 21, 2004 10:11 AM To: CF-Talk Subject: increase session time I'm getting into the programming of CF OK. I work with sessions but am a bit confused on its setup. In the application.cfm file I have this: It should timeout at 45 minutes but it seems shorter

increase session time

2004-07-21 Thread Robert Orlini
I'm getting into the programming of CF OK. I work with sessions but am a bit confused on its setup. In the application.cfm file I have this: It should timeout at 45 minutes but it seems shorter than that. Is adding 60 as opposed to 45 going to get it at 60 minutes. Can I just leave the timeout a

RE: Session time out[ENCRYPTED]

2004-07-16 Thread Ken Ferguson
http://www.sys-con.com/coldfusion/article.cfm?id=108&count=5272&tot=2&pa ge=2 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Session time out[ENCRYPTED]

2004-07-16 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Hi all I know I have seen threads about giving the user a warning that their session is about to timeout and possibly giving them the option to reset the timer, but I am not having any luck finding the threads in the archives. any help would be appreciated. Thanks Rodney [Todays Threads] [Thi

Session time out

2004-07-15 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Hi all I know I have seen threads about giving the user a warning that their session is about to timeout and possibly giving them the option to reset the timer, but I am not having any luck finding the threads in the archives. any help would be appreciated. Thanks Rodney [Todays Threads] [Thi

Re: session time

2002-08-31 Thread Chris Norloff
That's a 30-day session timeout. It sounds like the timeout is a thread timing out, not the session. Chris Norloff -- Original Message -- from: Agus Setiawan Basuni <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] date: Fri, 30 Aug 2002 08:36:55 +0700 >I

session time

2002-08-29 Thread Agus Setiawan Basuni
I have this code on my Application.cfm However, often times its timeout so its a little bit annoying us and user. Anyone know maybe why this is happen? -- AGUS SETIAWAN BASUNI [:-) http://www.WartaJazz.com/ __ Signup for the

Re: Session Time Out not actually doing anything

2002-08-14 Thread Joe Eugene
ROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 14, 2002 1:38 PM Subject: Session Time Out not actually doing anything > I have a site running CF 4.5 on NT4, I have the session time out set at > 10 minutes, but it seems to actually time out after

Re: Session Time Out not actually doing anything

2002-08-14 Thread Frank Mamone
This will happen if you hit another CFAPPLICATION tag with a different NAME attribute. Hope this helps, Frank Mamone - Original Message - From: "Nick McClure" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 14, 2002 1:38

RE: Session Time Out not actually doing anything

2002-08-14 Thread Adrian Lynch
The clock is fast? :OP What about APPLICATION.cfm -Original Message- From: Nick McClure [mailto:[EMAIL PROTECTED]] Sent: 14 August 2002 18:39 To: CF-Talk Subject: Session Time Out not actually doing anything I have a site running CF 4.5 on NT4, I have the session time out set at 10

Session Time Out not actually doing anything

2002-08-14 Thread Nick McClure
I have a site running CF 4.5 on NT4, I have the session time out set at 10 minutes, but it seems to actually time out after 2-5. Any ideas? -- Nick McClure TransDigital Solutions, Inc __ Your ad could be here. Monies from ads

RE: Session time out = never ? Bad?

2001-06-15 Thread Aidan Whitehall
> Never use the registry with client variables. Always set up client > variables to work with a database. Just makes sense. Is there a migration path from registry to databases if you've got existing applications that already use the registry to store their client data? -- Aidan Whitehall <[

Re: Session time out = never ? Bad?

2001-06-15 Thread Paul Johnston
>If the registry starts to get clogged, just store the data in a database >instead. This is set from CF Administrator. Never use the registry with client variables. Always set up client variables to work with a database. Just makes sense. Paul ~~

RE: Session time out = never ? Bad?

2001-06-15 Thread Norman Elton
Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 14, 2001 10:24 AM To: CF-Talk Subject: RE: Session time out = never ? Bad? Yes, I do realize that the server will reboot (guessing) monthly. ;-) After thinking about it last night, I also realized that his office

RE: Session time out = never ? Bad?

2001-06-14 Thread Mark W. Breneman
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 13, 2001 5:26 PM To: CF-Talk Subject: RE: Session time out = never ? Bad? I'm thinking: Impossible. I mean, I've heard of servers running for months at a time, but 10 years? Yeah RIGHT! HOWEVER, so long as all the session vars don

RE: Session time out = never ? Bad?

2001-06-13 Thread Mark Warrick
Original Message- > From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 12:51 PM > To: CF-Talk > Subject: Session time out = never ? Bad? > > > > Would it be "bad" to set a session timeout to 10 years in the future? I > have a cl

Session time out = never ? Bad?

2001-06-13 Thread Mark W. Breneman
Would it be "bad" to set a session timeout to 10 years in the future? I have a client that wants to never time out if he or his office workers are coming to the site from their office. I am thinking this would be "bad". Possible server registry blot? "I'm a little fuzzy on the whole good-bad

RE: session time out

2001-03-28 Thread Greg Jordan
Nelson I am confused. why would you want to set the to 60 minutes? Greg -Original Message- From: t nelson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 21, 2001 5:22 PM To: CF-Talk Subject: Re: session time out Howdy, I usually set my application like this notice the 60

Re: session time out

2001-03-22 Thread Chang Liu
thank you very much! - Original Message - From: "t nelson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 6:21 PM Subject: Re: session time out > Howdy, > > I usually set my application like this >

Re: session time out

2001-03-22 Thread Chang Liu
thank you very much! createtimespan("0","1","0","0") works for me. - Original Message - From: "Christopher Olive, CIO" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 5:48 PM

Re: session time out

2001-03-21 Thread t nelson
ork without it. best of luck and cheers, Nelson Original Message Follows From: "Chang Liu" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: session time out Date: Wed, 21 Mar 2001 15:52:07 -0500 Received: from [207.31.122.14

RE: session time out

2001-03-21 Thread Bob Silverberg
lk Subject: session time out Hi all, I tried to use: for one hour time out, but it still keeps 20 mins time out. any ideas and suggestions? thanks in advance! ~~ Structure your ColdFusion code with Fusebox. Get the official boo

Re: session time out

2001-03-21 Thread Nick Texidor
Yes, check the settings in CF Administrator. I ran into the same problem just the other week!! CF Administrator lets you to set the maximum, and no matter what is in the CFAPPLICATION tag it'll always be over-ridden by what's in the Administrator. HTH N on 22/03/01 7:52, Chang Liu at [EMAIL

RE: session time out

2001-03-21 Thread Christopher Olive, CIO
TED]] Sent: Wednesday, March 21, 2001 3:52 PM To: CF-Talk Subject: session time out Hi all, I tried to use: for one hour time out, but it still keeps 20 mins time out. any ideas and suggestions? thanks in advance! ~~ Structure your ColdFusio

session time out

2001-03-21 Thread Chang Liu
Hi all, I tried to use: for one hour time out, but it still keeps 20 mins time out. any ideas and suggestions? thanks in advance! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinf

Session time out error

2001-02-17 Thread Veena Sarda
I am getting a session time out error even if I am using that session. any help? Thanks Veena ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail

User session time

2000-05-06 Thread Francesco Scafi
Hi all, I am Francesco, new from CF-Talk. My question is: With ColdFusion can I know if a user is connected to a page and how I can know if him in not connected also? Sorry from my english. Thanks in advice, Francesco Scafi ---

RE: [Help !!!! with session time outs]

2000-03-27 Thread Raymond K. Camden
"My ally is the Force, and a powerful ally it is." - Yoda > -Original Message- > From: Won Lee [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 27, 2000 11:00 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [Help with session time outs] > > > This

RE: [Help !!!! with session time outs]

2000-03-27 Thread Won Lee
n, session, and client variables? --_=_NextPart_001_01BF9805.78B8A1D0 Content-Type: text/html; charset="windows-1252" RE: [Help with session time outs] what's the added overhead on <cflock> around application, session, and client variables? ---

RE: [Help !!!! with session time outs]

2000-03-27 Thread Raymond K. Camden
--Original Message- > From: Pecora, James [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 27, 2000 10:36 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [Help with session time outs] > > > > Raymond - > > can you give some brief examples of using c

RE: [Help !!!! with session time outs]

2000-03-27 Thread Pecora, James
Raymond - can you give some brief examples of using cflock?? where you did and did not use it in your code... actual snippits would be helpful, people are saying any time you use a session or application variable, but that doesn't give much information. tia -

RE: [Help !!!! with session time outs]

2000-03-26 Thread Cameron Childress
> Why not check for the existence of the var (and/or a value in the > var) prior > to loading the rest of the page, and take appropriate action if it doesn't > exist/is empty? Or better yet just use CFPARAM... -Cameron Cameron Childress McRae Communications 770.460.7277 x.2

RE: [Help !!!! with session time outs]

2000-03-26 Thread Lee Fuller
L PROTECTED]] > Sent: Sunday, March 26, 2000 4:42 PM > To: [EMAIL PROTECTED] > Subject: Re: [Help !!!! with session time outs] > > > use CFERROR or in 4.5 you can put in a default error message > > "Interent Gold Coast Properties" <[EMAIL PROTECTED]> > wrote:

Re: [Help !!!! with session time outs]

2000-03-26 Thread double-down
use CFERROR or in 4.5 you can put in a default error message "Interent Gold Coast Properties" <[EMAIL PROTECTED]> wrote: how do i get around the problem of a cf server error appearing when there has been a session time out due to a member being idle what suggestions do you

Help !!!! with session time outs

2000-03-26 Thread Interent Gold Coast Properties
how do i get around the problem of a cf server error appearing when there has been a session time out due to a member being idle what suggestions do you have so that an appropriate message appears rather than the cf error message due to a time out ?? Kind Regards Claude Raiola E-Mail