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.

I try using xdebug with NetBeans to debug PHP. I start debug, and NetBeans waits for ever for a connection with xdebug. I have NetBeans 6.8 (latest version) with the latest MAMP package installed on my mac.

My php.ini looks like this:

[xdebug]
;zend_extension="/Applications/MAMP/bin/php5/lib/php/extensions/no-debug-non-zts-20060613/xdebug.so"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000
share|improve this question

5 Answers

up vote 7 down vote accepted

If your php.ini really looks like what you posted, you have to un-comment the zend_extension line (i.e. remove the ';' at its begninning), so Xdebug is actually loaded.

Then, make sure Xdebug is loaded, calling phpinfo() from a PHP file (just to be sure).

After that : I suppose there should be some options to configure the debugger in netbeans ? If so, is netbeans listening on port 9000 ? (The one you configured in php.ini)

share|improve this answer
Must I restart all servers after changing php.ini? Did uncomment that, and checked NetBeans settings. Port 9000 is right. But NetBeans also mentions an Session ID: "netbeans-xdebug". Do I have to provide that somewhere in php.ini? – openfrog Dec 22 '09 at 15:47
You'll have to at least restart Apache (modifications to php.ini are only taken into account when Apache starts) ; for the Session ID, there is a xdebug.idekey setting (see xdebug.org/docs/remote ) ; not sure it'll do the trick, but it might -- never remember having set, though ; I suppose the default value is fine with Eclipse PDT (I usually use eclipse PDT, and not netbeans) – Pascal MARTIN Dec 22 '09 at 15:54

Finally, I had to add the idekey value like this:

xdebug.idekey="netbeans-xdebug"

now it works :-)

share|improve this answer
Note: I choose Pascal MARTIN's Answer as the accepted one, because without enabling xdebug by uncommenting it, my idekey thing would not do anything anyways ;-) (besides that I feel bad accepting my own answer so I just don't do it) – openfrog Dec 22 '09 at 15:53
Thanks for your answer anyway : this can prove useful to others ! – Pascal MARTIN Dec 22 '09 at 15:55
I hope it will :-) probably you were right, this idekey is by default fine for Eclipse. – openfrog Dec 22 '09 at 16:08
Odd that you needed that. I've never had to put it in. Maybe it's a difference between the *nix and the Windoze (with which I am shackled) xdebug. – RobertB Dec 29 '10 at 17:49
I didn't need this previously, but I've changed quite a bit on my Mac since then.. (homebrew PHP-FPM 5.3, upgrade to OS 10.8 and NB7.2) – shousper Aug 27 '12 at 6:18

The following settings worked for me with NetBeans 7.2 on Mountain Lion after restarting Apapche:

zend_extension = /usr/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so
xdebug.remote_autostart=on 
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_mode=req
xdebug.idekey="netbeans-xdebug" 
share|improve this answer
1  
these worked for me! Thanks! +1 – JustAnil Oct 21 '12 at 21:02
I also changed the project webroot (right click on project > properties) to app/webroot/, Not sure if this helped, but got it going for me! ;D – JustAnil Oct 21 '12 at 21:11
1  
A gazillion thank yous!!!! – jx12345 Apr 19 at 19:40

Mac/MAMP users: If you have tried all of the above and it still doesn't work, reboot your Mac. Restarting the servers through MAMP is not enough.

share|improve this answer

for me worked this way (thank you guys +1) /o/

<pre>
zend_extension = "c:\xampp\php\ext\php_xdebug2.dll"
xdebug.remote_autostart=on
xdebug.remote_enable=on
xdebug.remote_enable=1
xdebug.remote_handler"dbgp"
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_mode=req
xdebug.idekey="netbeans-xdebug"
</pre>

Config:
netbeans 7.3 - php 5.4 - xdebug 2.2 - xampp - win7(32bits)

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.