Debugging in Netbeans?

Does anyone here have experience using the NetBeans IDE?

If so, have you used the debugger?

Sad to say, but I have been away from development for so long, I have forgotten how to set up and use the debugger which is extremely beneficial when you’ve got hard to chase down errors!

http://wiki.netbeans.org/HowToConfigureXDebug

Yeah, I found that link right after I posted here.

Looks like I forgot that I had to add the followjng to my php.ini file…

zend_extension=[path to xdebug .so/.dll]
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
Sponsor our Newsletter | Privacy Policy | Terms of Service