Tony,

I've proofread twice your statement against what's in the CF Studio help for
CFAPPLICATION, and I can see nothing wrong.  The only things I can imagine:

1) Do you have another Application.cfm in some folder that could be fouling
things up?
2) Is it possible that what seems to be the 20-minute timeout comes really
from an accidental erasure or modification of the session variable in
question?  I would search the application for all instances of the session
variable name to be sure that I'm not erasing/changing it elsewhere.
3) If none of that does it, then I would take your existing CFAPPLICATION
tag, paste it into a blank file, and save that as Application.cfm in a new
subfolder.  Change the application name to something new.  Then put one
other file in that folder and check the variable, to be 100% sure that there
is some problem other than a typo or something.

I hope this is helpful,
Matthieu

-----Original Message-----
From: Tony Gruen [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 27, 2002 9:23 PM
To: CF-Talk
Subject: RE: Session Woes


Ken, Thanks for the reply. I have the session and application set to 1 day
in the admin. It seems to last about 20 minutes (although I have not timed
it specifically). I seem to remember that 20 minutes is default unless you
over-ride it with the scope setting that's what has me scratching my head. I
was thinking I overlooked something simple (which is usually the case).

Tony

-----Original Message-----
From: Ken Wilson [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 27, 2002 6:14 PM
To: CF-Talk
Subject: RE: Session Woes


What's the max timeout value set to in the CF Admin? Doesn't matter what you
set it to in your cfapplication tag...if the admin setting is less it will
timeout.

Ken


-----Original Message-----
From: Tony Gruen [mailto:[EMAIL PROTECTED]]
Sent: Saturday, July 27, 2002 8:34 PM
To: CF-Talk
Subject: Session Woes


Hello List-Members,
I have an issue with sessions that is escaping me. I have the session setup
using the scope below yet it still seems to timeout pre-maturely. It is
important that I not have the session timeout for 5-8 hours because the
application is being used over the course of a normal work day.

Have I missed something? I have been researching what other settings I may
need and cannot find the culprit.


<CFAPPLICATION NAME="AppName"
        CLIENTMANAGEMENT="Yes"
    CLIENTSTORAGE="Registry"
    SETCLIENTCOOKIES="Yes"
    SESSIONMANAGEMENT="Yes"
    SESSIONTIMEOUT=#CREATETIMESPAN(0, 5, 0, 0)#
    APPLICATIONTIMEOUT=#CREATETIMESPAN(0, 5, 0, 0)#
    SETDOMAINCOOKIES="No">








______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to