After authenticating a user their details are stored in the client scope. When we redirect through to their dashboard all the new items added to the client scope get wiped. I've cleared my cookies and cache which is now making it apparent that no client varaibles are actually being stored in cookies (I had some leftover from before I swapped the application scope).
This started happening after I updated an app from using application.cfm to application.cfc
I have the following application settings defined:
<cfset this.SessionManagement = true>
<cfset this.ClientManagement = true>
<cfset this.SetClientCookies = true>
<cfset this.sessionTimeout = CreateTimeSpan(0,8,0,0)>
<cfset this.applicationTimeout = CreateTimeSpan(0,8,0,0)>
Can you suggest any reasons why client variables would just disappear?