Re: Enable Request Debugging Output not working

2015-04-05 Thread Charles Sheehan-Miles
With all due respect, that’s simply not true. IIS, depending on your settings, will replace coldfusion errors with a blank 500 error page. A simple google search turn up dozens and dozens of times that question was asked and resolved by changing IIS settings. That’s how I fixed my dev

Re: Enable Request Debugging Output not working

2015-04-05 Thread Andrew Scott
That is correct and why there is a setting in ColdFusion to pass on the correct HTTP status code to IIS. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Mon, Apr 6, 2015 at 10:31 AM, Charles Sheehan-Miles

Re: Enable Request Debugging Output not working

2015-04-05 Thread Russ Michaels
yes that is true, however debug output is not an error, it is the debugging information that added to the bottom of a page. On Mon, Apr 6, 2015 at 1:31 AM, Charles Sheehan-Miles char...@sheehanmiles.net wrote: With all due respect, that’s simply not true. IIS, depending on your

Re: Enable Request Debugging Output not working

2015-04-05 Thread Andrew Scott
IIS friendly error messages has absolutely nothing to do with Robust debugging. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Mon, Apr 6, 2015 at 4:52 AM, Charles Sheehan-Miles char...@sheehanmiles.net wrote: I had

Re: Enable Request Debugging Output not working

2015-04-05 Thread Russ Michaels
Do you have any ip restrictions set for the debug output? On Sun, Apr 5, 2015 at 3:49 AM, Mark Spence markpence...@gmail.com wrote: For some reason, suddenly debug output has stopped working on my development machine. I'm not sure why. I have tried turning it off and on, restarting the

Re: Enable Request Debugging Output not working

2015-04-05 Thread Mark Spence
I have added 127.0.0.1 as a ip to serve debug output to, and I have also removed all ips to have debug info served to all ips. Neither results in output. On Sun, Apr 5, 2015 at 4:59 AM, Russ Michaels r...@michaels.me.uk wrote: Do you have any ip restrictions set for the debug output? On

Re: Enable Request Debugging Output not working

2015-04-05 Thread Charles Sheehan-Miles
I had this recently... The problem wasn't Coldfusion at all, it was IIS. Even locally I couldn't get debugging. Check website settings and make sure friendly error messages or whatever it turned off (sorry I'm not at a computer so can't remember the exact terminology) Sent from my iPhone On

Re: Enable Request Debugging Output not working

2015-04-05 Thread Russ Michaels
The most common cause is that you have a CFSETTING in your code somewhere that is preventing the debug output. Have you tried simply creating a simple test page outside of your application to check if the debug output works ? On Sun, Apr 5, 2015 at 7:29 PM, Mark Spence markpence...@gmail.com