XDebug is not loaded in PHP (Vista, Apache Module)
apache, php, windows, windows-vista, xdebug
Solution
`zend_extension_ts` is deprecated on >5.3. Try it with `zend_extension` instead.
Problem
I downloaded php_xdebug-2.0.5-5.3-vc9.dll, added at the end of PHP.ini the following line: ``` zend_extension_ts="C:/Program Files/php5/ext/php_xdebug-2.0.5-5.3-vc9.dll" ``` When I use phpinfo(), xdebug is not loaded. When I run command "php.exe -m", it not loaded as well. How can this be resolved? 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 somewhat similar with: Apache not loading Xdebug, but does when started from the Command Line EDIT: I use VC6 dll and fixed configuration: ``` zend_extension="C:/Program Files/php5/ext/php_xdebug-2.0.5-5.3-vc6.dll" ``` Still can not find xdebug in phpinfo() output.