RE: good error.cfm template

2004-05-14 Thread cfhelp
PROTECTED] Sent: Tuesday, May 11, 2004 12:00 PM To: CF-Talk Subject: Re: good error.cfm template You can steel mine, http://www.cfm-applications.com/cferror_template.txt Tony Weeg wrote: a while back, I had received an error.cfm file from someone who made it great, returned a bunch of good

Re: good error.cfm template

2004-05-14 Thread Bryan F. Hogan
I would create an XML file that contains hosting customers that should be emailed directly. Then after reading this file in from the error template loop through the mail and if it finds the site from the xml object from the cgi.server_name file to mailto whatever the xml file defines.

RE: good error.cfm template

2004-05-14 Thread Philip Arnold
From: cfhelp I have clients on the server that would want to receive error notices. Can they pass an email for the CC to the error template? I tried setting the Var in the Application file but no luck. What scope did you put the variable in? Just putting it in Application.cfm doesn't mean

Re: good error.cfm template

2004-05-14 Thread Bryan F. Hogan
I've never tried, but I'm 99% sure that the variable scopes are not available in a server wide error handler. Philip Arnold wrote: Use one of the more global scopes, such as Application or Request [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: good error.cfm template

2004-05-14 Thread cfhelp
:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 8:36 AM To: CF-Talk Subject: RE: good error.cfm template From: cfhelp I have clients on the server that would want to receive error notices. Can they pass an email for the CC to the error template? I tried setting the Var in the Application file

RE: good error.cfm template

2004-05-14 Thread Philip Arnold
From: Bryan F. Hogan I've never tried, but I'm 99% sure that the variable scopes are not available in a server wide error handler. I don't think they are, but I'd rather not risk it... [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: good error.cfm template

2004-05-14 Thread Bryan F. Hogan
Are you using this with the cferror tag or as a global error handler in the cf admin? cfhelp wrote: I just changed it to Application and it worked. Thanks. I was just thinking of querying the database for the client info and sending it to them. Then I can set a SendError value in the

RE: good error.cfm template

2004-05-14 Thread cfhelp
Global error handler Rick -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 8:44 AM To: CF-Talk Subject: Re: good error.cfm template Are you using this with the cferror tag or as a global error handler in the cf admin? cfhelp wrote

Re: good error.cfm template

2004-05-14 Thread Bryan F. Hogan
Can you show how you did this. I just tried and it doesn't work. How did you get the application variables to pull from the global error template page set in the admin? Global error handler [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: good error.cfm template

2004-05-14 Thread cfhelp
/_error.cfm in the Admin. Now I get BCC's on all errors on the server and they get all the errors. If anyone can see a potential problem please let me know. Rick -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 9:15 AM To: CF-Talk Subject: Re: good

Re: good error.cfm template

2004-05-14 Thread Bryan F. Hogan
Ah, your doing it both ways. If you remove the cferror tags, you will see that your error page gets ignored when it looks for the application variable. CF looks for the error page in this order. 1. Looks for cferror in your application. 2. Looks for the global error page setting in the admin.

RE: good error.cfm template

2004-05-12 Thread Robert Redpath
, May 11, 2004 3:00 PM To: CF-Talk Subject: Re: good error.cfm template You can steel mine, http://www.cfm-applications.com/cferror_template.txt Tony Weeg wrote: a while back, I had received an error.cfm file from someone who made it great, returned a bunch of good information, does anyone have

RE: good error.cfm template

2004-05-12 Thread Tony Weeg
, 2004 9:34 AM To: CF-Talk Subject: RE: good error.cfm template I thought you couldn't use cfmail (or any other CF tags) on an error template, since it might create an infinate error loop.Can you use is in CFMX 6.1 or are you submitting these vars via a autosubmit form? -Original Message

RE: good error.cfm template

2004-05-12 Thread Hugo Ahlenius
Re: the error template -- I have had, for quite a long time, an error template that e-mails me things from a number of scopes. But the information that has provided most value to me are the ones from the CGI scope, primarily the query string and the user agent (is this a robot, or an odd

RE: good error.cfm template

2004-05-12 Thread Pascal Peters
this since CF4.5 I think. Pascal -Original Message- From: Robert Redpath [mailto:[EMAIL PROTECTED] Sent: woensdag 12 mei 2004 15:34 To: CF-Talk Subject: RE: good error.cfm template I thought you couldn't use cfmail (or any other CF tags) on an error template, since it might

Re: good error.cfm template

2004-05-12 Thread Bryan F. Hogan
Never heard of that problem. It works well for me, has been for years now. Robert Redpath wrote: I thought you couldn't use cfmail (or any other CF tags) on an error template, since it might create an infinate error loop.Can you use is in CFMX 6.1 or are you submitting these vars via a

RE: good error.cfm template

2004-05-12 Thread Philip Arnold
From: Robert Redpath I thought you couldn't use cfmail (or any other CF tags) on an error template, since it might create an infinate error loop.Can you use is in CFMX 6.1 or are you submitting these vars via a autosubmit form? It depends on where you use the error template If you're

RE: good error.cfm template

2004-05-12 Thread Robert Redpath
That must be what I was remembering..cferror = no cfmail -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 10:00 AM To: CF-Talk Subject: RE: good error.cfm template From: Robert Redpath I thought you couldn't use cfmail (or any other

RE: good error.cfm template

2004-05-12 Thread Pascal Peters
Still wrong: see my previous post -Original Message- From: Robert Redpath [mailto:[EMAIL PROTECTED] Sent: woensdag 12 mei 2004 16:03 To: CF-Talk Subject: RE: good error.cfm template That must be what I was remembering..cferror = no cfmail [Todays Threads] [This Message

RE: good error.cfm template

2004-05-12 Thread Philip Arnold
From: Robert Redpath That must be what I was remembering..cferror = no cfmail Actually, not quite From my email From: Philip Arnold If you're using CFERROR and not catching exceptions, then you're limited It's not just Exception in CFMX thought - you also have Monitor then But

RE: good error.cfm template

2004-05-12 Thread Dave Watts
It's not just Exception in CFMX thought - you also have Monitor then The MONITOR value of CFERROR's TYPE attribute predates CFMX. I think it's been around since CF 4.5.x. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [Todays Threads] [This

RE: good error.cfm template

2004-05-12 Thread Philip Arnold
From: Dave Watts The MONITOR value of CFERROR's TYPE attribute predates CFMX. I think it's been around since CF 4.5.x. Yeah? Shows how often I've used it then g [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: good error.cfm template

2004-05-12 Thread Pascal Peters
and cfmlhistory only goes back to cf4.0.1 Pascal -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: woensdag 12 mei 2004 16:22 To: CF-Talk Subject: RE: good error.cfm template It's not just Exception in CFMX thought - you also have Monitor then But I'm not sure

RE: good error.cfm template

2004-05-12 Thread Dave Watts
According to cfmlhistory the cferror tag has been around since cf4.0.1 It's been around since at least 2.0. I'm pretty sure it was in 1.5, if not 1.0. The type monitor is deprecated in cf6.0+ Well, I'll be damned. I don't use it that often, but I didn't know it was removed. I just tried

RE: good error.cfm template

2004-05-11 Thread Tony Weeg
a good debugging tool that a developer can use to troubleshoot issues when they arise tony -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 11, 2004 4:14 PM To: CF-Talk Subject: RE: good error.cfm template What do you consider a good error template

RE: good error.cfm template

2004-05-11 Thread Semrau Steven Ctr SAF/IE
Help Desk. /p /cfoutput cfabort /cfif /cfif Steven Semrau SRA International http://www.sra.com -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 11, 2004 4:04 PM To: CF-Talk Subject: RE: good error.cfm template yeah, that's what I have begun to

Re: good error.cfm template

2004-05-11 Thread Bryan F. Hogan
You can steel mine, http://www.cfm-applications.com/cferror_template.txt Tony Weeg wrote: a while back, I had received an error.cfm file from someone who made it great, returned a bunch of good information, does anyone have a REALLY good error.cfm file that they use to get troubleshooting

RE: good error.cfm template

2004-05-11 Thread Tony Weeg
thanks brian! -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 11, 2004 3:00 PM To: CF-Talk Subject: Re: good error.cfm template You can steel mine, http://www.cfm-applications.com/cferror_template.txt Tony Weeg wrote: a while back, I had received

RE: good error.cfm template

2004-05-11 Thread Tony Weeg
I meant bryan. :) my brothers name is brian. anyway. thanks! -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 11, 2004 3:00 PM To: CF-Talk Subject: Re: good error.cfm template You can steel mine, http://www.cfm-applications.com/cferror_template.txt

Re: good error.cfm template

2004-05-11 Thread Matt Robertson
Tony, I've gone to just CFDUMPing out every scope you can think of.It makes for a big, uh... dump, and usually its more info than I need, but doing it this way has proven invaluable to me on many occasions.The emails tend to be about 110k to 180k, and if you are doing something like holding large

RE: good error.cfm template

2004-05-11 Thread Tony Weeg
Subject: Re: good error.cfm template Tony, I've gone to just CFDUMPing out every scope you can think of.It makes for a big, uh... dump, and usually its more info than I need, but doing it this way has proven invaluable to me on many occasions.The emails tend to be about 110k to 180k, and if you

RE: good error.cfm template

2004-05-11 Thread Jerry Johnson
What do you consider a good error template? Good reporting to development staff? Good description of error for user, including next steps? Good error logging/catching in the logfiles? Good automated error recovery (system recovery, disk cleanup, link repair, CF recycling) Jerry Johnson [EMAIL