0

I have a Mac (10.8.3) dev machine connecting to a CentOS (6.3) VM running PHP 5.4.13 under Eclipse June Service Release 2.

I am running into the dreaded "Launching test (57%)..." hang issue. I have looked all over the web/stack overflow and there seem to be a bunch of suggestions (which I tried, none of which seemed to fix my issue).

My /etc/php.ini file looks like this:

[xdebug]
zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.remote_enable=On
xdebug.remote_handler="dbgp"
xdebug.remote_mode="req"
xdebug.remote_port=9000
xdebug.remote_host="10.211.55.3"
xdebug.remote_log=/tmp/xdebug_remote_log
xdebug.remote_connect_back=0

My /etc/php.d/xdebug.ini file looks like this:

; Enable Xdebug extension module
extension=xdebug.so

; Configure the extension [See Xdebug documentation for options to add here]
xdebug.remote_enable=On
xdebug.remote_handler="dbgp"
xdebug.remote_mode="req"
xdebug.remote_port=9000
xdebug.remote_host="10.211.55.3"
xdebug.remote_log=/tmp/xdebug_remote_log
xdebug.remote_connect_back=0


$ php -i | grep -i xdebug
/etc/php.d/xdebug.ini,
xdebug
xdebug support => enabled
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 => /tmp => /tmp
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 => 10.211.55.3 => 10.211.55.3
xdebug.remote_log => /tmp/xdebug_remote_log => /tmp/xdebug_remote_log
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 => /tmp => /tmp
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
$ 

Any help here would be greatly appreciated!

4

1 回答 1

0

我使用 PHP eclipse 的经验向我展示了以下具有这种行为的场景:

1 - 我尝试调试的网站无法正常工作。我的意思是,如果我们有一个内部错误,例如,apache 将不会运行该站点并且将无法调试它。
2 - 不允许客户端机器获取 xdebug 信息。当我们有一个 DHCP 服务器并且经常更改远程主机 IP 时,这种情况经常发生。

因此,请确保您尝试运行的网站在 Eclipse 调试之外运行。在浏览器中打开它,看看它是否正在运行。此外,请确保 eclipse 机器具有您在 xdebug.remote_host 参数上通知的 IP。

于 2013-04-24T03:05:39.093 回答