Hey folks,
I'm trying to get php5.3 to work with XDebug in NetBeans. The wiki:
says to put this in the php.ini file:
zend_extension_ts="C:/wamp/bin/php/php5.2.9-1/ext/php_xdebug-2.0.4-5.2.8.dll"
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
This works in php 5.2, but in 5.3, however, there are some changes to the php.ini file, namely this:
zend_extension_debug and
zend_extension_ts have been removed. Use the
zend_extension directive to load all Zend Extensions.
I've tried replacing zend_extension_ts with zend_extension (with and without the full path), but haven't had any luck getting Xdebug to load (when checked through phpinfo), which obviously means NetBeans cannot connect to it. Anyone else had any luck?
Andy