Netbeans xdebug nightmare

Posted by Josh Nankin on Stack Overflow See other posts from Stack Overflow or by Josh Nankin
Published on 2010-06-07T13:09:15Z Indexed on 2010/06/07 13:12 UTC
Read the original article Hit count: 478

Filed under:
|
|
|

I know what you're thinking, ANOTHER netbeans xdebug post?

Well, I've tried everything I've seen in other posts, and nothing seems to work. Here's my setup:

  • OS: Ubuntu 9.10
  • PHP: 5.2.1
  • Netbeans: 6.8

The following is in my /etc/php5/apache2/php.ini

zend_extension=/usr/lib/php5/20060613/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey="netbeans-xdebug"

I've tried switching ports (I've tried 9001, 9002, and 9034 so far), using zend_extension_ts, adding additional xdebug parameters in the config file, but nothing seems to work: Netbeans still says it's waiting for connection (netbeans-xdebug)

If I look at my phpinfo, I do see a whole section on xdebug, and the parameters are correct.

Any help would be greatly appreciated!

© Stack Overflow or respective owner

Related posts about php

Related posts about netbeans