Controls aspects of page processing, such as the output of content outside cfoutput tags.
<cfsetting enablecfoutputonly=true|false>
setting enablecfoutputonly=true|false;
Name | Type | Required | Default | Description |
---|---|---|---|---|
enablecfoutputonly | boolean | No | false | true: Blocks output of content that is outside cfoutput tags. false: Displays content that is outside cfoutput tags. |
showdebugoutput | boolean | No | true | true: If debugging is enabled in the Administrator, displays debugging information false: suppresses debugging information that would otherwise display at end of generated page. |
requesttimeout | numeric | No | Integer; number of seconds. Time limit, after which CFML processes the page as an unresponsive thread. Overrides the timeout set in the CFML Administrator. |
Enable cfoutput only
setting enablecfoutputonly=true;
Disables debug output
setting showdebugoutput=false;
Set the request timeout to 30 seconds
setting requesttimeout=30;
Enable cfoutput only
<cfsetting enablecfoutputonly="true">
Foo <cfoutput>bar</cfoutput>
Disables debug output
<cfsetting showdebugoutput="false">
Set the request timeout to 30 seconds
<cfsetting requesttimeout="30">