Reputation: 1654
I am very new to php and am trying to built a full debugging environment for php. I have downloaded Netbeans and have already wamp installed.
I found on net that xdebug is a good utility for debugging. I have downloaded it. What exact changes are required in configuration files.
I am using windows 7. and also want to ask " is the Zend framework required to be downloaded ?"
Upvotes: 0
Views: 289
Reputation: 53525
The following wizard is a step-by step installation instruction for xdebug, it'll tell you basically three things:
C:\Program Files (x86)\PHP\ext
).zend_extension = "C:\Program Files (x86)\PHP\ext\php_xdebug-2.2.1-5.3-vc9.dll"
and remove all the other zend
lines).Upvotes: 1
Reputation: 481
I also recommend the Netbeans wiki. Or try this simple tutorial http://martinsikora.com/debugging-php-in-netbeans-using-xdebug
If you tried already, try to be more specific on what is not working for you (include error messages etc.)
The Zend framework is not needed.
Upvotes: 0
Reputation: 46050
All the information you need is here: http://wiki.netbeans.org/HowToConfigureXDebug
Upvotes: 2