I know this has been asked several times, but the answers did not help solve my problem.
I am running XAMPP 1.8.2 on Windows XP SP3 and am struggling with installing XDebug.
I downloaded XDebug from the website. Unfortunately, the installation wizard did not work for me, my version of PHP is 5.4.16, so I selected the file for PHP 5.4 VC9 TS (32 bit) .
I configured my php.ini according to various tutorials:
[XDebug] zend_extension_ts = "D:\Stefan\xampp\php\ext\php_xdebug-2.2.3-5.4-vc9.dll" xdebug.remote_enable = On xdebug.remote_handler = "dbgp" xdebug.remote_host = "127.0.0.1" xdebug.remote_mode=req xdebug.remote_port = 9000 xdebug.remote_autostart = 1
When restarting apache in phpinfo() no additional entries are displayed. I checked that no other debugging or appeal modules were activated, and also tried changing the Xdebug port, but nothing worked.
The Apache and Windows error logs do not contain entries related to this problem.
Any clues?
source share