0

我试图在我的xampp运行中安装 xdebug php 5.4.4,花了几个小时后,我仍然无法安装它!

这是我在 php.ini 中的设置

zend_extension = "Z:\xampp\php\ext\php_xdebug-2.2.1-5.4-vc9-x86_64.dll"
xdebug.remote_mode = "req"
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.profiler_enable=1
xdebug.profiler_output_dir="Z:\xampp\tmp"

谁能发现任何错误?

谢谢

4

2 回答 2

5

请参阅http://xdebug.org/wizard.php上的向导- 它会告诉您要准确进行哪些设置,以及要下载哪个二进制文件。

于 2012-11-12T13:31:42.127 回答
0

我遇到了同样的问题,无法使用 xampp 和使用 IDE netbeans 运行 xdebug,我所做的是:-下载了为我的 php 版本 VC9 TS 指定的版本!(它需要是 TS) - 将 php.ini 中的行编辑为:

[XDebug]
zend_extension="c:\xampp\php\ext\php_xdebug.dll"
xdebug.remote_enable=1
xdebug.remote_host="127.0.0.1"
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"

就是这样,希望它有所帮助。干杯

于 2013-05-10T15:56:32.110 回答