On Wednesday, November 17, 2010, West <[email protected]> wrote: > I'm trying to run FarCry 5.27 and FarCry 6 on the same server and > running into an issue. I'm using an Application specific mapping "/ > farcry" and this seems to be working but the problem is in the core. > In core, there is an Application.cfc with hardcoded references to / > farcry
There is an ongoing architectural issue in ColdFusion itself; application specific mappings are not recognized by extends or cfimport. In fact extends and cfimport both require static values at compile time. As a consequence you need to have the framework either under the web root or alternatively a mapping for /farcry in cfide or your web server config. Unfortunately, Adobe ColdFusion only allows for a single mapping of the same name per instance. If you want to run multiple framework implementations you are best to use the web server mapping (Apache alias or IIS virtual). Note you only need a mapping and not the physical code base under the web root. So you can even have multiple applications sharing a common code base of core and plugins. GB -- 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
