There is a bunch of NetBeans + XDebug + Open Server.
In php files called directly (index.php) or from php, the debugger stops at breakpoints. If php is invoked via jquery, the debugger does not stop at breakpoints. Here is the php.ini :
[Xdebug] zend_extension="%sprogdir%/modules/php/%phpdriver%/ext/php_xdebug.dll" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = "localhost" xdebug.remote_log = "var/log/xdebug.log" xdebug.remote_mode = "req" xdebug.remote_port = 9000
How to make the debugger stop at php caused by jQuery?