debugging doesn't display on local sevrver

2011-12-07 Thread Greg Morphis

I have CF 9 developer version running on IIS 7, my server is http://localhost:81
I look in the cfadmin and the debugging options are selected, I check
Application.cfc and I've got

cfsetting
requesttimeout=200
showdebugoutput=true
enablecfoutputonly=false
/

And yet, there's no debugging at the bottom showing queries ran,
structures, etc.

Is it because I have it running in IIS or a different port? Is there a
setting I turn on to allow me to see the debugging info?

Thanks!

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349002
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: debugging doesn't display on local sevrver

2011-12-07 Thread Russ Michaels

cf only cares about the IP address, by default it allows localhost in
the IP restrictions.
Try removing all the IP restrictions and see if that helps.

Also are u sure you don;t have another cfsetting further down your
code disabling the debugging again ?


On Wed, Dec 7, 2011 at 6:53 PM, Greg Morphis gmorp...@gmail.com wrote:

 I have CF 9 developer version running on IIS 7, my server is 
 http://localhost:81
 I look in the cfadmin and the debugging options are selected, I check
 Application.cfc and I've got

        cfsetting
                requesttimeout=200
                showdebugoutput=true
                enablecfoutputonly=false
                /

 And yet, there's no debugging at the bottom showing queries ran,
 structures, etc.

 Is it because I have it running in IIS or a different port? Is there a
 setting I turn on to allow me to see the debugging info?

 Thanks!

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349003
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: debugging doesn't display on local sevrver

2011-12-07 Thread Greg Morphis

Hey Russ, thanks for the tip, removing the IP addresses worked..
apparently my IP address is ::1

Thanks!



On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaels r...@michaels.me.uk wrote:

 cf only cares about the IP address, by default it allows localhost in
 the IP restrictions.
 Try removing all the IP restrictions and see if that helps.

 Also are u sure you don;t have another cfsetting further down your
 code disabling the debugging again ?


 On Wed, Dec 7, 2011 at 6:53 PM, Greg Morphis gmorp...@gmail.com wrote:

 I have CF 9 developer version running on IIS 7, my server is 
 http://localhost:81
 I look in the cfadmin and the debugging options are selected, I check
 Application.cfc and I've got

        cfsetting
                requesttimeout=200
                showdebugoutput=true
                enablecfoutputonly=false
                /

 And yet, there's no debugging at the bottom showing queries ran,
 structures, etc.

 Is it because I have it running in IIS or a different port? Is there a
 setting I turn on to allow me to see the debugging info?

 Thanks!



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349004
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: debugging doesn't display on local sevrver

2011-12-07 Thread Carl Von Stetten

That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses.

On 12/7/2011 12:03 PM, Greg Morphis wrote:
 Hey Russ, thanks for the tip, removing the IP addresses worked..
 apparently my IP address is ::1

 Thanks!



 On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaelsr...@michaels.me.uk  wrote:
 cf only cares about the IP address, by default it allows localhost in
 the IP restrictions.
 Try removing all the IP restrictions and see if that helps.

 Also are u sure you don;t have another cfsetting further down your
 code disabling the debugging again ?


 On Wed, Dec 7, 2011 at 6:53 PM, Greg Morphisgmorp...@gmail.com  wrote:
 I have CF 9 developer version running on IIS 7, my server is 
 http://localhost:81
 I look in the cfadmin and the debugging options are selected, I check
 Application.cfc and I've got

 cfsetting
 requesttimeout=200
 showdebugoutput=true
 enablecfoutputonly=false
 /

 And yet, there's no debugging at the bottom showing queries ran,
 structures, etc.

 Is it because I have it running in IIS or a different port? Is there a
 setting I turn on to allow me to see the debugging info?

 Thanks!



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349010
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: debugging doesn't display on local sevrver

2011-12-07 Thread Greg Morphis

REMOTE_ADDR=::1REMOTE_HOST=::1

right
On Wed, Dec 7, 2011 at 3:36 PM, Carl Von Stetten
vonner.li...@vonner.net wrote:

 That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses.

 On 12/7/2011 12:03 PM, Greg Morphis wrote:
 Hey Russ, thanks for the tip, removing the IP addresses worked..
 apparently my IP address is ::1

 Thanks!



 On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaelsr...@michaels.me.uk  wrote:
 cf only cares about the IP address, by default it allows localhost in
 the IP restrictions.
 Try removing all the IP restrictions and see if that helps.

 Also are u sure you don;t have another cfsetting further down your
 code disabling the debugging again ?


 On Wed, Dec 7, 2011 at 6:53 PM, Greg Morphisgmorp...@gmail.com  wrote:
 I have CF 9 developer version running on IIS 7, my server is 
 http://localhost:81
 I look in the cfadmin and the debugging options are selected, I check
 Application.cfc and I've got

         cfsetting
                 requesttimeout=200
                 showdebugoutput=true
                 enablecfoutputonly=false
                 /

 And yet, there's no debugging at the bottom showing queries ran,
 structures, etc.

 Is it because I have it running in IIS or a different port? Is there a
 setting I turn on to allow me to see the debugging info?

 Thanks!





 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349011
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: debugging doesn't display on local sevrver

2011-12-07 Thread Carl Von Stetten

Yup.  That's the IPv6 equivalent of 127.0.0.1
-Carl

On 12/7/2011 1:43 PM, Greg Morphis wrote:
 REMOTE_ADDR=::1REMOTE_HOST=::1

 right
 On Wed, Dec 7, 2011 at 3:36 PM, Carl Von Stetten
 vonner.li...@vonner.net  wrote:
 That looks like a IPv6 address, rather than the #.#.#.# IPv4 addresses.

 On 12/7/2011 12:03 PM, Greg Morphis wrote:
 Hey Russ, thanks for the tip, removing the IP addresses worked..
 apparently my IP address is ::1

 Thanks!



 On Wed, Dec 7, 2011 at 1:01 PM, Russ Michaelsr...@michaels.me.ukwrote:
 cf only cares about the IP address, by default it allows localhost in
 the IP restrictions.
 Try removing all the IP restrictions and see if that helps.

 Also are u sure you don;t have another cfsetting further down your
 code disabling the debugging again ?


 On Wed, Dec 7, 2011 at 6:53 PM, Greg Morphisgmorp...@gmail.comwrote:
 I have CF 9 developer version running on IIS 7, my server is 
 http://localhost:81
 I look in the cfadmin and the debugging options are selected, I check
 Application.cfc and I've got

  cfsetting
  requesttimeout=200
  showdebugoutput=true
  enablecfoutputonly=false
  /

 And yet, there's no debugging at the bottom showing queries ran,
 structures, etc.

 Is it because I have it running in IIS or a different port? Is there a
 setting I turn on to allow me to see the debugging info?

 Thanks!



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349013
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm