Re: cfssetting showdebugoutput

2010-10-12 Thread funand learning
I am using access=remote in cffunction, and cfsetting showdebugoutput=no immediately after the cfcomponent tag. This does not work either. i also tried using cfsetting in application.cfm with no use. Any other alternatives I can try? On Sun, Oct 10, 2010 at 7:40 PM, enigment enigm...@gmail.com

Re: cfssetting showdebugoutput

2010-10-12 Thread Michael Grant
They do. On Sun, Oct 10, 2010 at 7:40 PM, enigment enigm...@gmail.com wrote: I'm pretty certain that no, false, and 0 all have the same effect. Dave On Sun, Oct 10, 2010 at 3:43 PM, Reed Powell r...@powellgenealogy.com wrote: You want cfsetting showdebugoutput=No not false. It will

Re: cfssetting showdebugoutput

2010-10-12 Thread fun and learning
I am using access='remote' in my cffunction method: so Used cfsetting showdebugoutput=no after the cfcomponent but with no effect. I dont see any output, but I donot see any result in my grid. below is the jquery function calling the cfc: script type=text/javascript

Re: cfssetting showdebugoutput

2010-10-10 Thread enigment
Using cfsetting showdebugoutput=false does actually disable debug output. Any chance there's another call to it somewhere else with a different setting? Are you actually seeing debug output in the requests that fail, even with that code? Or you're not, but debug output being on in administrator

Re: cfssetting showdebugoutput

2010-10-10 Thread Russ Michaels
Anything that gets data from the server with a remote request will usually break when debug output is on, as it is being added to the end of the request. make sure you have debug output disabled globally, you could set it in your application.cfm/cfc as setting it in a page that calls another page

Re: cfssetting showdebugoutput

2010-10-10 Thread Reed Powell
You want cfsetting showdebugoutput=No not false. It will stop any debug output, just as if you removed your IP address from the list in cf admin. It will not have any effect on error output, etc. ~| Order the Adobe

Re: cfssetting showdebugoutput

2010-10-10 Thread enigment
I'm pretty certain that no, false, and 0 all have the same effect. Dave On Sun, Oct 10, 2010 at 3:43 PM, Reed Powell r...@powellgenealogy.com wrote: You want cfsetting showdebugoutput=No not false. It will stop any debug output, just as if you removed your IP address from the list in cf

cfssetting showdebugoutput

2010-10-09 Thread fun and learning
Hi All - I am using jqgrid to display some data. This works when I turn off the Request Debugging Output in Coldfusion Administrator. I do not have access to Administrator page at my work. Using cfsetting showdebugoutput = false also does not help. Is there a way I can disable request