RE: [ACFUG Discuss] Weird CF 9 behaviour tied to DB/DSN (DB is read only)

2011-03-24 Thread Charlie Arehart
Ajas, you have FusionReactor, don't you? When you have one of these "spinning" requests, what does a stack trace of the running request show it doing? It will tell you the very line of CFML on which the request is hung up, so you should be able to find the answer-and do let us know. It sounds inter

RE: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Charlie Arehart
Hey Steve, if you were on CF8 or above, the easiest solution would be the new FORMAT="text" attribute for CFDUMP. (And I share this for others who may have the same problem and ARE on 8 or above and didn't notice this little hidden gem, one of a few changes for CFDUMP since then.) But since you're

[ACFUG Discuss] Weird CF 9 behaviour tied to DB/DSN (DB is read only)

2011-03-24 Thread Ajas Mohammed
Hi, We had the weirdest of errors today. On one of our test CF 9 Servers, we tried to start CF admin and the browser would just keep processing. We tried to access a site same problem. So it struck to me, why dont I look at logs first and sure indeed in exception log, there was an entry saying co

Re: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Steven
Thx all.. for the feedback. HTML attrib on cfmail is in use.. google just doesn't like what cfdump is doing. To SR.. yeah, I'm doing the fixed log file route as well. Thinking about just attaching it.. but kinda messy and don't want the extra file maint. And I did read Nadel's article -- but on th

Re: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Steve Ross
I am doing the same thing and the dump gets screwed up in gmail because of how they process mail. The "solution" I came up with was to write the dump in a log file on the machine so then I can just go into that directory and double click on the "email.html" file. Kind of a kludge but, it works. th

Re: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Ken Auenson, II
Steven, You need to add type="HTML" to your cfmail tag. --Ken On Mar 24, 2011 9:54 AM, "Steven" wrote: > Hey all, > We do some error trapping via email for one of our apps, and the formatting > doesn't come over quite right for gmail. We're just dumping out the error > struct in a cfmail of type

RE: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Troy Jones
It looks to me like gmail doesn't like the styling. Maybe instead of just a straight you could use the cferror or cfcatch structure in a styled output table or div of your own. That's the only thing that readily comes to mind. Troy Jones [cid:image001.jpg@01CBEA13.C7926750] __

Re: [ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Teddy R. Payne
Steve, You kind of showed us the result and the error message, but not how you are creating the HTML inside of the CFMAIL. Perhaps, you need to capture the end result of the email generation before you send the email and verify that proper HTML is being generated. Also, cfmail is very sensitive t

[ACFUG Discuss] error trap emails -- html format for gmail?

2011-03-24 Thread Steven
Hey all, We do some error trapping via email for one of our apps, and the formatting doesn't come over quite right for gmail. We're just dumping out the error struct in a cfmail of type html. Anyone run into this and have a workround for gmail? Something in the html output isn't quite right for gma