404 errors in the application log

2012-04-02 Thread Randy Johnson
Hello, Is there a way to prevent 404 error messages from showing up in the application log? Thanks! Randy ~| Order the Adobe Coldfusion Anthology now!

Re: 404 errors in the application log

2012-04-02 Thread Nathan Strutz
IIS has an option to check for existing files before it hands the request off to CF. You could also implement an onMissingTemplate() method in your Application.cfc, which I think is a CF9 feature. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Mon, Apr 2, 2012

Re: 404 errors in the application log

2012-04-02 Thread Dave Watts
IIS has an option to check for existing files before it hands the request off to CF. Just a heads-up - you have to be very careful with this feature, at least in some versions of IIS + CF. CF depends in many cases on wildcard patterns, and paths to files that don't even exist. You could also

Re: 404 errors in the application log

2012-04-02 Thread Randy Johnson
You could also implement an onMissingTemplate() method in your Application.cfc, which I think is a CF9 feature. Thanks, I will go this route. Randy ~| Order the Adobe Coldfusion Anthology now!

Re: 404 errors in the application log

2012-04-02 Thread Randy Johnson
You could also implement an onMissingTemplate() method in your Application.cfc, which I think is a CF9 feature. This is the suggestion I'd recommend, and it's available in CF 8 as well. Thanks, this is what I will do. Randy

Re: 404 errors in the application log

2012-04-02 Thread Russ Michaels
you also have a global setting in the cfadmin for missing template handler, put a path here and it will show for all missing files. note that the file must also exist at the same path in the default website that hosts the cfadmin or it wont validate. A very daft requirement if you ask me. On