Waiting for XDebug session 停在57%不动的解决办法
今天配合 eclipse php
配置 xdebug
环境,发现 Waiting for XDebug session
一直卡着,搜索之后找到解决办法:
php.ini
中 xdebug.remote_enable
配置开启:xdebug.remote_enable = On
。
本人使用的 php
集成环境为 upupw
,在 php.ini
中关于 xdebug
配置如下:
zend_extension="D:\upupw\PHP5\ext\php_xdebug-2.2.5-5.5-vc11.dll"
xdebug.auto_trace=0
xdebug.collect_params=0
xdebug.collect_return=0
xdebug.trace_output_dir="D:\upupw\xdebug\trace"
xdebug.profiler_enable=0
xdebug.profiler_output_dir="D:\upupw\xdebug\profiler"
xdebug.max_nesting_level=100
xdebug.remote_enable=On
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp