views:

241

answers:

2

I'm trying to debug a Wordpress site with Netbeans using XDebug. I can get it to hit a breakpoint on the index.php page, but it won't break on any other page. Has anyone else run into this issue?

If I debug a concrete5 site or something it works beautifully. So it has to be something with how Wordpress works.

+1  A: 

I had the same issue. I made sure I had these 2 lines in my php.ini file.

zend_extension= xdebug.remote_enable=true

Make sure the Xdebug version is compatible with your version of PHP.

Also, check the debug port used for Xdebug. I have my defaulted to 9000

rxn
+1  A: 

yep. Case-sensitive paths, softlinks, and include paths are the root of the problem. They need to match in your IDE and your webserver. see http://www.noodlecake.com/?p=105

Stupid upvote button only works once. *click* *click* *click*
alxp