How to Enable Robust Exceptions on a per Site basis in ColdFusion

From Hostek.com Wiki
Revision as of 19:21, 26 March 2018 by Codyw (Talk | contribs) (Remove incorrect information.)

Jump to: navigation, search

In circumstances when you need to enable robust exceptions for a site, here are the steps needed:

You can configure this at the site level within your Application.cfc using the "this.EnableRobustException" property:

https://helpx.adobe.com/coldfusion/cfml-reference/application-cfc-reference/application-variables.html

Example "Application.cfc" file:

<cfcomponent>
    <cfset this.Name = "My Application Name" />
    <cfset this.EnableRobustException = "True" />
</cfcomponent>