无法使 Xdebug 与 Eclipse PDT 一起工作
Posted
技术标签:
【中文标题】无法使 Xdebug 与 Eclipse PDT 一起工作【英文标题】:Can't make Xdebug work with Eclipse PDT 【发布时间】:2015-01-25 17:18:15 【问题描述】:我安装了 Eclipse PDT
和 Xdebug
和 XAMPP
。虽然网上有各种解决方案,但我找不到解决我的问题的方法。
这是我的 XAMPP 中的 phpinfo(),它显示已安装 xdebug:
xdebug
xdebug support enabled
Version 2.2.6
IDE Key XDEBUG_ECLIPSE
Supported protocols Revision
DBGp - Common DeBuGger Protocol $Revision: 1.145 $
Directive Local Value Master Value
xdebug.auto_trace Off Off
xdebug.cli_color 0 0
xdebug.collect_assignments Off Off
xdebug.collect_includes On On
xdebug.collect_params 0 0
xdebug.collect_return Off Off
xdebug.collect_vars Off Off
xdebug.coverage_enable On On
xdebug.default_enable On On
xdebug.dump.COOKIE no value no value
xdebug.dump.ENV no value no value
xdebug.dump.FILES no value no value
xdebug.dump.GET no value no value
xdebug.dump.POST no value no value
xdebug.dump.REQUEST no value no value
xdebug.dump.SERVER no value no value
xdebug.dump.SESSION no value no value
xdebug.dump_globals On On
xdebug.dump_once On On
xdebug.dump_undefined Off Off
xdebug.extended_info On On
xdebug.file_link_format no value no value
xdebug.idekey no value no value
xdebug.max_nesting_level 100 100
xdebug.overload_var_dump On On
xdebug.profiler_aggregate Off Off
xdebug.profiler_append Off Off
xdebug.profiler_enable Off Off
xdebug.profiler_enable_trigger Off Off
xdebug.profiler_output_dir \ \
xdebug.profiler_output_name cachegrind.out.%p cachegrind.out.%p
xdebug.remote_autostart Off Off
xdebug.remote_connect_back Off Off
xdebug.remote_cookie_expire_time 3600 3600
xdebug.remote_enable On On
xdebug.remote_handler dbgp dbgp
xdebug.remote_host localhost:8756 localhost:8756
xdebug.remote_log no value no value
xdebug.remote_mode req req
xdebug.remote_port 9000 9000
xdebug.scream Off Off
xdebug.show_exception_trace Off Off
xdebug.show_local_vars Off Off
xdebug.show_mem_delta Off Off
xdebug.trace_enable_trigger Off Off
xdebug.trace_format 0 0
xdebug.trace_options 0 0
xdebug.trace_output_dir \ \
xdebug.trace_output_name trace.%c trace.%c
xdebug.var_display_max_children 128 128
xdebug.var_display_max_data 512 512
xdebug.var_display_max_depth 3 3
Eclipse PDT 在调试模式下运行时暂停 57%,Eclipse 显示 “Launching : waiting for Xdebug Session” 以下是生成的 URL
127.0.0.1:8756/Mywebsite/index.html?XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=14170721856664
我关注了各种网站,但所有的努力都白费了。
这是 Xdebug 的 php.ini 部分:
zend_extension = D:\xampp\php\ext\php_xdebug-2.2.6-5.5-vc11.dll
;xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "D:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = "localhost:8756"
xdebug.trace_output_dir = "D:\xampp\tmp"
;xdebug.remote_connect_back=1
xdebug.remote_port=9000
注意:由于默认的 apache 端口 8080 被占用,我已将我的 apache 配置为 8756
Waiting for the XDebug Session 57% in Eclipse PDT也忍不住了!
提前致谢!!
【问题讨论】:
【参考方案1】:您的配置无效。仅将当前 xdebug.remote_host
替换为主机。此处不允许使用端口。
顺便说一句:您默认启用了分析。这可能会减慢每个请求;)
【讨论】:
将其替换为:xdebug.remote_host = localhost。还是一样! remote_connect_back = 1 和 eclipse xdebug 设置中的多会话也不起作用?您确定 Windows 上的 9000 端口是空闲的吗? netstat -ano|find "9000" 给出: TCP 0.0.0.0:9000 0.0.0.0:0 LISTENING 166 TCP [::]:9000 [::]:0 LISTENING 166 我试图改变它到 9001 。还是一样! 您可以按照以下步骤重试吗:wiki.eclipse.org/Debugging_using_XDebug【参考方案2】:经过几个小时苦苦挣扎的帖子,我终于有了我的 OMG 它在 php.ini 中使用以下几行的工作经验:
zend_extension = "d:/wamp/bin/php/php5.4.12/zend_ext/php_xdebug-2.2.3-5.4-vc9-x86_64.dll"
zend_extension_ts="d:/wamp/bin/php/php5.4.12/zend_ext/php_xdebug-2.2.3-5.4-vc9-x86_64.dll"
zend_debugger.allow_hosts=127.0.0.1/32,192.168.2.3/32
xdebug.remote_enable=On
xdebug.remote_host=localhost
xdebug.remote_connect_back=1
xdebug.remote_port=9100
注意 d:/wamp/bin/php/php5.4.12/zend_ext/php_xdebug-2.2.3-5.4-vc9-x86_64.dll 必须替换为你的路径/dll。 我在 php.ini 中更改了我的端口。确保在 Eclipse 中使用相同的端口 (调试配置 --> 调试器 --> 配置 --> 调试端口 --> 9100)
问候,
迈克
【讨论】:
以上是关于无法使 Xdebug 与 Eclipse PDT 一起工作的主要内容,如果未能解决你的问题,请参考以下文章
在 Eclipse PDT 中使用 xdebug 和 cakephp 进行调试