> -----Original Message----- > From: dan martin [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 08, 2007 8:05 PM > To: CF-Talk > Subject: popup closing causes logout > > I have a popup window that I use for uploading images. After the upload > is completed, the user closes the popup. On IE, closing the popup > causes the user to be logged out. Any ideas why this is happening? I am > using a session variable to retain the login status.
Forget CF for a moment and just examine the headers that come back (you can use a tool like HTTPWatch, the Developer's Toolbar or Fiddler (google will help you find them: just search for the names with "http"). The session is linked to the browser either through a token passed on the URL or, the default, via a Cookie. Look for the value/existence of these in the HTTP headers before and after you lose your session. If they're not changed you need to look to CF, if they are changed you need to focus on the browser. The latter is pretty likely however: all sorts of things can mess with HTTP headers. Firewalls, spyware scanners, network appliances, etc. Jim Davis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283207 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

