All,

I have an odd problem that I was hoping someone might be able to help me
out with. I have a login application. When a user is logged in, and
closes the window (thus the session) in IE it doesn't kill the session
like it is supposed to. 
 
The odd part of this is that on my 127.0.0.1 dev environment, it works
fine. Or in Netscape on the live site, it works fine. This is only on
the live version, in IE. 
 
I have this code in my application.cfm file:
 
<cfapplication name="loginApp" sessionmanagement="Yes"
clientmanagement="yes" sessiontimeout=#CreateTimeSpan(0,0,45,0)#>
 
<CFLOCK timeout="30" name="#session.sessionID#">
            <cfparam name="Session.UserID" default="">
            <cfparam name="Session.Password" default="">
</CFLOCK> 
 
<cfif IsDefined("Cookie.CFID") AND IsDefined("Cookie.CFTOKEN")> 
 
<cfset cfid_local = Cookie.CFID> 
 
<cfset cftoken_local = Cookie.CFTOKEN> 
 
<cfcookie name="CFID" value="#cfid_local#"> 
 
<cfcookie name="CFTOKEN" value="#cftoken_local#"> 
 
</cfif>
 
 
Help! Any ideas?  
Thanks in advance for any light you can shed!

Jake
 
 

______________________________________________________________________
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/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to