I had this problem when I migrated an existing site to newer code.  Drove me
nuts.  One thing I did was put CFID and CFTOKEN in the bottom right hand
corner of the page and discovered I was getting a new cfid/cftoken on every
page.  From there I found -- and for the life of me I don't know why this
is -- that if I removed SETCLIENTCOOKIES="YES" from the cfapplication
statement that the problem disappeared.  The statement wasn't in my older
code, but was in the newer one. Here's the working statement:

<CFAPPLICATION NAME="namehere"
 SESSIONMANAGEMENT="YES"
 CLIENTMANAGEMENT="YES"
 CLIENTSTORAGE="#request.SiteDSN#"
 sessiontimeout="#CreateTimeSpan(0,1,0,0)#"
 applicationtimeout="#CreateTimeSpan(0,2,0,0)#">

Hope this helps,

-----------------------------------------
Matt Robertson      [EMAIL PROTECTED]
MSB Designs, Inc. http://mysecretbase.com
-----------------------------------------

> I am working on an application which uses some a session variables. It
works
> perfectly in IE (of course), however when I try to load the exact same
> page(s) in netscape the variable does not exist.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
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