Yes, the per-app setting is enabled and I have specified my mappings and custom tag paths in the application.cfc file. The weird thing is that it works the majority of the time, but, man, the performance certainly sucks, not to mention the intermittent "I can't find the custom tag" errors. I would prefer if it would have just borked every time. At least I would have something to start with. ;-) Tomorrow, I'm going in with a fresh mind and I will strip everything down to the minimum until I find the problem. I just with Adobe would not have used custom tag paths to locate components. mike
_____ From: Michael Dinowitz [mailto:[email protected]] Sent: Thu 6/18/2009 5:34 PM To: cf-talk Subject: Re: Converted Application.cfm to Application.cfc and Having Problems Are you using the per-app settings right? The docs are a little wonky. I have a writeup on blog of fusion but the basics are below http://www.blogoffusion.com/032508-coldfusion-8-per-app-settings--mappings.cfm This is what the docs say <cfset this.mappings["MyMap"]="c:\inetpub\myStuff"> This is what is needed <cfset this.mappings["/MyMap"]="c:\inetpub\myStuff"> Note the slash in the beginning of the mapping. Or it may be something else. :) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323686 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

