0

我一直在寻找高低,但仍然无法使用“Eclipse for PHP Developers 3.0.2”进行调试。

目前 Eclipse 仅以 57% 的速度挂起,“正在启动:等待 XDebug 会话。但是当eclipse挂起时,php文件在外部浏览器中打开并运行???

我正在为 Web 服务器使用“XAMPP 3.1.0.3.1.0”,并在 php ext 文件夹中有相应的“php_xdebug.dll”文件。

我尝试了其他论坛的许多设置,但仍然没有运气,这是我的 XDebug 的 php.ini 文件配置:

[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dllstack"
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 0n
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp\tmp"

有人知道我需要改变什么吗?

4

1 回答 1

0

似乎配置设置不正确,使用的好工具是http://xdebug.org/wizard.php

下载新版本,将其添加到 php/ext 并更新 php.ini:

[XDebug]
zend_extension = \xampp\php\ext\php_xdebug-2.2.2-5.4-vc9.dll
;zend_extension = "\xampp\php\ext\php_xdebug.dll"
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "\xampp\tmp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
;xdebug.remote_enable = 0
;xdebug.remote_handler = "dbgp"
;xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp\tmp"
于 2013-03-30T07:09:20.393 回答