On 8/3/06, Will Tomlinson wrote: > Yanno, I used this template, and it wasn't called on the particular error > that occurred. > They were doin dsql server maintenance and it was a connection error.
No, the above will work for connection errors. God knows I've seen more than a few of those (was up until 2:30 am bringing a new SQL Server online cuz of it). I have, however, noticed that this will not fire under the following circumstances: 1. You have an Application.cfm in your root that has the cferror statement in it. Fine. 2. You have a subfolder that also has an Application.cfm in it. Inside that file is something like: <cfinclude template="../Application.cfm"> <cfset foo-bar> <cfset woo=hoo> etc. etc. Now you would think that since you are cfincluding the 'parent' application.cfm that the 'child' would inherit all of the parent's settings, and in all cases it does, as it should. Except for the cferror statement, which doesn't fire. You have to make a separate "../" cferror statement in your 'child' app.cfm assuming you are doing such a thing. HtH, -- [EMAIL PROTECTED] Janitor, MSB Web Systems mysecretbase.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248767 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

