CFID/CFTOKEN Error

I have this in application.cfm:

<cfapplication name="project" sessionmanagement="Yes" setclientcookies="No"
sessiontimeout="#CreateTimeSpan(0,0,30,0)#" applicationtimeout="#CreateTimeSpan(0,0,30,0)#">

<cfsetting showdebugoutput="yes">
<cfsetting enablecfoutputonly="Yes">

<cfcookie name="CFID" value="#SESSION.CFID#">
<cfcookie name="CFTOKEN" value="#SESSION.CFTOKEN#">​

This application has always worked with no problem, but now when I tried to upload it to jodohost.com servers, I get this error:

Error Occurred While Processing Request
Element CFID is undefined in SESSION.

4 : <cfsetting enablecfoutputonly="Yes">
5 :
6 : <cfcookie name="CFID" value="#SESSION.CFID#">
7 : <cfcookie name="CFTOKEN" value="#SESSION.CFTOKEN#">
8 :


Any ideas??
 
Back
Top