Firefox extension: Easy Xdebug
This addon was built to make debugging while using netbeans PHP easier.
This plugin is usefull if you don't want your netbeans IDE to open a new browser window when starting a debug session.
To set your environment up go to netbeans:
- Right click your project > properties > Run configuration > Advanced > Do not open webbrowser.
- Then right click the icon in the bottom right to start debugging your current page.
Documentation about using Xdebug.
In short, you have to copy php_xdebug*.dll file into your php's extensions dir and add following lines into your php.ini:
zend_extension_ts=php_xdebug.dll;
xdebug.remote_enable=On;
xdebug.remote_host="localhost;"
xdebug.remote_port=9000;
xdebug.remote_handler="dbgp";
Restart your Apache server... and you can start using the addon!
Inspired by Xdebug helper from Denis Orlikhin
Addon provided bij eLime.

