RE: Site (not Server) - wide Error Handler

2005-04-21 Thread Mary Jo Sminkey
That's exactly what I needed! Much appreciated Just be careful what you dump and send by email...for instance if you dump the form scope and run an online store, it could end up emailing credit card information. Not very secure! Same with session scope, may contain sensitive infomation. You

Re: Site (not Server) - wide Error Handler

2005-04-21 Thread Deanna Schneider
But, of course, be aware that this will not cover you for nice 404's. -Original Message- From: Ryan Duckworth [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 20, 2005 12:59 PM To: CF-Talk Subject: RE: Site (not Server) - wide Error Handler In Application.cfm: cferror type

RE: Site (not Server) - wide Error Handler

2005-04-21 Thread Adkins, Randy
Know of any way to capture those without having the IIS or something customized to use selected error files? -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 2:20 PM To: CF-Talk Subject: Re: Site (not Server) - wide Error Handler

Re: Site (not Server) - wide Error Handler

2005-04-21 Thread Deanna Schneider
Nope. We're still trying to figure that one out. - Original Message - From: Adkins, Randy [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, April 21, 2005 1:22 PM Subject: RE: Site (not Server) - wide Error Handler Know of any way to capture those without having

Site (not Server) - wide Error Handler

2005-04-20 Thread Adkins, Randy
What's the best approach to using a site-wide (not server-wide) error handler as apposed to wrapping each piece with a CFTRY? An initial thought is some type of CFTRY statement within the Application tag, but wanted other opinions and approaches. TIA

Re: Site (not Server) - wide Error Handler

2005-04-20 Thread Allan Cliff
) - wide Error Handler What's the best approach to using a site-wide (not server-wide) error handler as apposed to wrapping each piece with a CFTRY? An initial thought is some type of CFTRY statement within the Application tag, but wanted other opinions and approaches. TIA

RE: Site (not Server) - wide Error Handler

2005-04-20 Thread Ryan Duckworth
Sent: Wednesday, April 20, 2005 6:28 PM Subject: Site (not Server) - wide Error Handler What's the best approach to using a site-wide (not server-wide) error handler as apposed to wrapping each piece with a CFTRY? An initial thought is some type of CFTRY statement within the Application

RE: Site (not Server) - wide Error Handler

2005-04-20 Thread Adkins, Randy
Thanks, That's exactly what I needed! Much appreciated -Original Message- From: Ryan Duckworth [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 20, 2005 12:59 PM To: CF-Talk Subject: RE: Site (not Server) - wide Error Handler In Application.cfm: cferror type=EXCEPTION

RE: Site (not Server) - wide Error Handler

2005-04-20 Thread Kevin Graeme
, 2005 11:09 AM To: CF-Talk Subject: RE: Site (not Server) - wide Error Handler Thanks, That's exactly what I needed! Much appreciated -Original Message- From: Ryan Duckworth [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 20, 2005 12:59 PM To: CF-Talk Subject: RE: Site

RE: Site (not Server) - wide Error Handler

2005-04-20 Thread Calvin Ward
Not to mention the OnError event in Application.cfc - Calvin -Original Message- From: Kevin Graeme [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 20, 2005 1:16 PM To: CF-Talk Subject: RE: Site (not Server) - wide Error Handler And of course, you can have different .cfm error

RE: Site (not Server) - wide Error Handler

2005-04-20 Thread Dave Watts
In Application.cfm: cferror type=EXCEPTION template= errorHandler.cfm cferror type=REQUEST template= errorHandler.cfm In errorHandler.cfm: cfmail from=[EMAIL PROTECTED] to=[EMAIL PROTECTED] subject=[ERROR] - SiteName type=HTML h3ERROR/h3 cfdump var=#ERROR# h3CGI/h3