我知道,这已经被问过好几次了,但答案并没有解决我的问题。
我在 Windows XP SP3 上运行 XAMPP 1.8.2 并且正在努力安装 XDebug。
我从网站下载了 XDebug。不幸的是,安装向导对我不起作用,我的 PHP 版本是 5.4.16,所以我选择了PHP 5.4 VC9 TS (32 bit)
.
我根据不同的教程配置了我的 php.ini:
[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
重新启动 apache 时,phpinfo()
. 我已经检查过,没有激活其他调试或加速模块,并且还尝试更改 Xdebug 端口,但没有任何效果。
Apache 和 Windows 错误日志不包含与此问题相关的任何条目。
有什么提示吗?