我刚刚在我的 Eclipse PDT 安装上安装了 xdebug,现在在我的本地 debian 机器上尝试使用 XDEBUG 调试我的 PHP 代码时出现以下错误:
网络启动已经运行
2个问题:
- 我怎样才能在 Eclipse 中杀死它而不一起离开 Eclipse?
- 是否需要设置我的说明中没有的其他配置设置?
任何帮助/指导将不胜感激,因为我正处于开始拔头发的地步。谢谢!
这是我按照说明在动态扩展部分中添加到我的 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