I downloaded php_xdebug-2.0.5-5.3-vc9.dll, adding the following line at the end of PHP.ini:
zend_extension_ts="C:/Program Files/php5/ext/php_xdebug-2.0.5-5.3-vc9.dll"
When I use phpinfo (), xdebug does not load.
When I run the command "php.exe -m", it also does not load.
How can this be solved?
My configuration: PHP 5.3.1, Apache 2.2.14 with Apache module, OS: Windows Vista Both php and xdebug are thread safe.
This is a bit like:
Apache does not load Xdebug, but does it at startup from the command line
EDIT:
I am using VC6 dll and fixed configuration:
zend_extension="C:/Program Files/php5/ext/php_xdebug-2.0.5-5.3-vc6.dll"
Still unable to find xdebug in phpinfo () output.
source
share