CF9 unable to find/load Application.cfm
We have an application that is currently running in a CF mx 7 environment. It was deployed to CF 9 (9,0,0,251028) and when run throws an exception when accessing the client variables:
The requested scope CLIENT has not been enabled.
Before CLIENT variables can be used, the CLIENT state management system must be enabled using the cfapplication tag.
In the administration panel [Server Settings > Client Variables] I have a default storage mechanism selected. In the root folder of the application I have my Application.cfm file and it makes the cfapplication declaration:
<cfapplication name="..."
clientManagement="yes"
setclientcookies="Yes"
setDomainCookies="Yes"
sessionManagement="no">
So it seems like all of the necessary pieces are in place and correct. After confirming that I checked if cf9 is even loading my Application.cfm file and it doesn't seem like it is. Going back to the error page I reviewed the stack trace. In order the Stack Trace displays the first template and then the index.cfm file. I don't see Application.cfm anywhere. In further testing I created a test variable in Application.cfm, both as
<cfset test = "hello world" />
and
<cfset Client.test = "hello world" />
