I believe the problem is that the site is set up as a basic standalone 
installation and application.cfc does not exist in folder 
/farcry/projects/#application.applicationname#/

The following line in /core/tags/farcry/download.cfm
<cfset 
oApp=createObject("component","farcry.projects.#application.applicationname#.www.application")>
Should proably be
<cfset 
oApp=createObject("component","farcry.projects.#application.projectDirectoryName#.www.application")>
But this still does not work in a standalone configuration.

Chris.


On Monday, 6 August 2012 21:08:58 UTC+1, Sean Coyne wrote:
>
> 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