I am currently trying to get Xdebug to work on our development server. As client I am using netbeans and the connection so far works without problems. But when I try to set a breakpoint within netbeans it is just getting ignored.
And yeah, I already googled for hours and also found some questions here that perfectly fit my description: SO 1 SO 2
But this does not seem to solve it for me. The Xdebug
module is loaded via zend_extension=path/to/xdebug. so in the
/etc/php5/conf.d/xdebug.ini
I also looked at the php5/apache and php5/cli php.ini to make sure it is not loaded with extension= somewhere there. I also checked the "additional .ini files parsed" found by phpinfo() and it seems to be nowhere else loaded.
By executing php -m I can see the loaded Xdebug module in
[PHP Modules]
and in
[Zend Modules]
Not sure if this indicates that it is still loaded twice or if it is fine like that? Still if I remove the zend_extension=/path/to/xdebug.so
from the conf.d/xdebug.ini
it is also no longer loaded. So I really assume it is only loaded there.
If I set the remote_log option is see that Netbeans
is trying to set something:
<- breakpoint_set -i 452 -t line -s enabled
-f file:///http:/development.xxx.de/users/itsame/index.php -n 15
-> <response xmlns="urn:debugger_protocol_v1"
xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set"
transaction_id="452" state="enabled" id="258870001">
</response>
But it seems to have no effect (looks pretty much the same like in the other SO questions I have posted above. But if i do a manual xdebug_break() inside the php code it handels it properly.
PHP Version is 5.2.6 and Xdebug is 2.1. Any suggestions where I could have a look next?