Grasping at straws here...

Are you on a case-sensitive OS/filesystem by any chance?  The download 
custom tag is trying to load an instance of the Application.cfc in order to 
manually call onMissingTemplate().  It's possible that if you're on a case 
sensitive file system then trying to do 

<cfset 
oApp=createObject("component","farcry.projects.#application.applicationname#.www.application")>

could fail.  If you are, then you could try changing it to 

<cfset 
oApp=createObject("component","farcry.projects.#application.applicationname#.www.Application")>

(note the capital "A" in Application) and see if that works.  If so, log a 
bug and someone can fix it in core.

-- 
-- 
You received this message cos you are subscribed to "farcry-dev" Google group.
To post, email: [email protected]
To unsubscribe, email: [email protected]
For more options: http://groups.google.com/group/farcry-dev
--------------------------------
Follow us on Twitter: http://twitter.com/farcry


Reply via email to