2

我刚刚在我的 Eclipse PDT 安装上安装了 xdebug,现在在我的本地 debian 机器上尝试使用 XDEBUG 调试我的 PHP 代码时出现以下错误:

网络启动已经运行

2个问题:

  1. 我怎样才能在 Eclipse 中杀死它而不一起离开 Eclipse?
  2. 是否需要设置我的说明中没有的其他配置设置?

任何帮助/指导将不胜感激,因为我正处于开始拔头发的地步。谢谢!

这是我按照说明在动态扩展部分中添加到我的 php.ini 文件中的内容:

;load module
zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"

;some options
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req

;The following IP should be of the host running Eclipse!
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.idekey=

;Only enable the following if you want profiler output (lots of data!)
;xdebug.profiler_enable=1
;xdebug.profiler_output_dir=/var/log/XDebug/
;xdebug.profiler_enable_trigger=1
4

1 回答 1

3

“Web Launch Already Running”
这意味着您已经开始调试会话并且它还没有被终止。
打开“调试”透视图并查看“调试”选项卡,选择“PHP Web 应用程序”并单击“终止”(红色方块)按钮。

于 2012-05-04T03:36:19.413 回答