session variables

I'm having trouble getting session variables to stick around... once I change to a page other than the one on which they were set, they seem disapear.

This is the cfpplication tag I'm using, which is working successfully on another jodohost account:

<cfapplication name="wgu_imglib"
clientmanagement="yes"
sessionmanagement="yes"
setclientcookies="yes"
setdomaincookies="yes" sessiontimeout="#createTimeSpan(0,0,60,0)#"
applicationtimeout="#createTimeSpan(0,8,0,0)#"
Clientstorage="Cookie"
loginstorage="session">

The only different is that on the other account, the application resides in the main domain, on the new one I'm developing, it's in a subdomain. I have no idea if that has anything to do with it at all, I'm grasping at straws at this point!

Any help would be appreciated.

Thanks!
 
Nevermind, I figured it out. Removing setdomaincookies="yes" from the tag seems to have done the trick.

I found the solution listed as a bug for CF 6.0... I was under the impression jodohost was running 6.1, though? So I'm still confused, but happier since I found a way to make it work.
 
Back
Top