Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hey guys, 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 ->

But it seems to have no effect (looks pretty much the same like in the other SO questions i've 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. Thanks for any info where i could have a look next.

share|improve this question
Seems suspicious that it appears in PHP Modules and Zend Modules, but I don't have any idea how that could happen. Have you tried the "Tailored Installation Instructions" at xdebug.org/find-binary.php ? – mjs Aug 6 '10 at 21:34
Hi, sorry for the late response was away over the weekend and i am not back at office before wednesday. But then i'll give it a try, thanks. – TheCandyMan Aug 9 '10 at 9:57
Hi, just tried the Tailored Installation Instructions, but didn't change anything. Actually i think it is pretty much the same like what pecl install is doing. It also told me "You're already running the latest Xdebug version". – TheCandyMan Aug 11 '10 at 11:23

4 Answers

up vote 5 down vote accepted

It looks like there is something wrong with the path to the file containing the breakpoint.

<- breakpoint_set -i 452 -t line -s enabled 
   -f file:///http:/development.xxx.de/users/itsame/index.php -n 15 ->

I've had a similar problem with Eclipse. Only my breakpoints in the index file were accepted and breakpoints in other files—that were included in the index—were ignored.

I looked in the remote_log file and saw the following:

<- breakpoint_set -i 260 -t line 
   -f file:///~jeroen/workspace/fieg/wp-content/plugins/fieg/fieg.php -n 22-> 
<response xmlns="urn:debugger_protocol_v1" 
   xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" 
   transaction_id="260" id="48060002"></response>

I noticed that the path for the breakpoint was all wrong. It turned out that I had to setup Port Mapping in Eclipse. After setting the correct mapping the breakpoints started working. Also my remote_log now shows the correct path:

<- breakpoint_set -i 333 -t line 
   -f file:///Users/jeroen/Workspace/fieg/wp-content/plugins/fieg/fieg.php -n 12->     
<response xmlns="urn:debugger_protocol_v1" 
   xmlns:xdebug="http://xdebug.org/dbgp/xdebug" command="breakpoint_set" 
   transaction_id="333" id="48080005"></response>

I'm not sure if there is an equivalent of the Eclipse Port Mapping configuration in Netbeans, but hopefully I pointed you in the good direction.

share|improve this answer
Thanks! That really pointed me into the right direction. Problem was with path mapping. Seems you have to map all the needed folders, not only parent folders, also see : wiki.netbeans.org/… – TheCandyMan Feb 14 '11 at 9:25
Tough i wasn't able to test mapping for all folders right now, Netbeans seems to have a bug so I'm currently unable to add/edit the Server Path. Tough it looks like that should be useful if somebody else steps over this problem. For me it now strangely works also without any mapping. So thanks a lot again for pointing me in the right direction ;) – TheCandyMan Feb 14 '11 at 9:29

I had the exact same problem, found this on stack overflow and then searched in Google for path mapping.

This article finally solved the problem for me

http://137.254.16.27/netbeansphp/entry/path_mapping_in_php_debugger

share|improve this answer
Thanks, this really helped! In my case I've set both paths to /opt/lampp/htdocs/my_project/ – Micer Nov 11 '12 at 16:32
(same?) URL with hostname instead of IP: blogs.oracle.com/netbeansphp/entry/path_mapping_in_php_debugger – Adam Monsen Mar 22 at 17:14

In your php.ini file, set this directive:

report_zend_debug = 1

I hope this help someone?

share|improve this answer

Go to: Project > Properties > Run Configuration > Advanced (button)

Remove all the mappings from the "Path Mapping" if you are not using Xdebug for remote debugging. This would help to fix this issue.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.