Re: Problems with switching from application.cfm to application.c fc

2008-07-22 Thread gary gilbert
Richard, You may want to check out the documentation on application.cfc before going any further... Gary ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: Problems with switching from application.cfm to application.c fc

2008-07-21 Thread Dave Watts
However, in our current application.cfm file we had defined 20 or so variables that were not scoped (eg. xcachepath=/cache. In application.cfc, these variables evidently need to be scoped (eg. request.xcachepath=/cache. This is a huge website and the thought of searching and replacing

Re: Problems with switching from application.cfm to application.c fc

2008-07-21 Thread Richard Steele
I like your idea: cffunction name=onRequest ... cfargument name=targetPage cfset xcachepath = /cache ... cfinclude template=#Arguments.targetPage# ... /cffunction However I'm not sure how to implement this. What is the targetpage? Since this is the root