If the various cfapplication tags have different names, timeouts, or other different attributes, then that could be the source of the session problems you are seeing. Perhaps the person using MSIE 7 is the only person that visits a certain maintenance page that is influenced by a different cfapplication tag, for example.
I would recommend to not use "10" for applicationtimeout. It is more clear if you use the CreateTimeSpan function. You could just rely on the default specified in CF Admin. I have seen some sites where people enabled client variables then never used them anywhere in the site. Make sure that your site actually uses client variables and that client variables are the most appropriate variable type choice. The majority of Web applications do not need client variables enabled. -Mike Chabot On Sat, Dec 17, 2011 at 2:07 PM, Nick Gleason <[email protected]> wrote: > > Mike, > > To answer your question, it seems to be tied to a particular browser (IE 7 > or 8) on a particular computer (ie IE 7, 8 work for most users). > > Also, re: session variables, looking in CF Admin, it looks like we have "Use > J2EE Session Variables" as well as "Enable Application Variables" and > "Enable Session Variables". I'm not sure what related measures we have in > the code other than settings in cfapplication, as follows: > ------------------------------------------------------------ > <cfapplication name="#request.ApplicationName#" > clientmanagement = "Yes" > sessionmanagement = "Yes" > setclientcookies = "Yes" > sessiontimeout = "#REQUEST.SessionTimeout#" > applicationtimeout = "10" > clientStorage = "#request.dsn#"> > ------------------- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349216 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

