用phpeclipse断点总停不住,还提示waiting for xdebug session
我是通过eclipse操作虚拟机上的一个项目,虚拟机phpinfo是有xdebug的,也在eclipse里把xdebug的端口和php的xdebug端口都设为了19000,访问时候的地址为http://192.168.147.148/php_info.php?XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=13530473713434,但就是不能停在断点上,求帮助[Xdebug]
zend_extension="/eChance/net_manager/lib/xdebug.so"
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.trace_output_name="%H.%s"
xdebug.trace_output_dir="/data/logs/xdebug"
xdebug.profiler_enable=on
xdebug.profiler_output_dir="/data/logs/xdebug"
xdebug.remote_port=19000
xdebug.remote_enable=true
xdebug.remote_host="localhost"
xdebug.remote_handler="dbgp"每次debug请求,都能在/data/logs/xdebug里面看到相应的文件变化,但eclipse就是停不住在网上也查了一些帖子,如改端口,没用……
解决方案 »
之前在配置Eclipse PHP XDebug时遇到以下情况:
通过webpage启动调试后,可以进行调试,即“Break at the first line”。
但无法进行断点调试,即调试时遇到断点不会停止,而且也无法看到变量的值。
出现这种情况的话,多半是因为PHP Server的Path Mapping设置不正确。
错误的设置:
Path on server: http://localhost/sample
Local Path: /sample
修改为:
Path on server: /sample
Local Path: /sample
再次进行调试,就能正确在断点处停止。
至于调试时,变量值无法显示,即都显示为“uninitialized”的情况。
那是因为XDebug的版本问题,即2.1版前的XDebug会存在这个BUG。
在众多的XDEBUG版本中,如何找出自己需要的版本呢?
访问以下链接:
http://xdebug.org/find-binary.php
将phpinfo()的内容粘帖到上面链接的页面的输入框中,点击提交。
之后会看到分析结果,即推荐安装的XDebug版本。
备注:转的。
我是通过eclipse操作虚拟机上的一个项目,虚拟机phpinfo是有xdebug的,也在eclipse里把xdebug的端口和php的xdebug端口都设为了19000,访问时候的地址为http://192.168.147.148/php_info.php?XDEBUG_SESSION_START=ECLIPSE_DBGP&KEY=13530473713434,但就是不能停在断点上,求帮助[Xdebug]
zend_extension="/eChance/net_manager/lib/xdebug.so"
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.trace_output_name="%H.%s"
xdebug.trace_output_dir="/data/logs/xdebug"
xdebug.profiler_enable=on
xdebug.profiler_output_dir="/data/logs/xdebug"
xdebug.remote_port=19000
xdebug.remote_enable=true
xdebug.remote_host="localhost"
xdebug.remote_handler="dbgp"每次debug请求,都能在/data/logs/xdebug里面看到相应的文件变化,但eclipse就是停不住在网上也查了一些帖子,如改端口,没用……
解决方案 »
之前在配置Eclipse PHP XDebug时遇到以下情况:
通过webpage启动调试后,可以进行调试,即“Break at the first line”。
但无法进行断点调试,即调试时遇到断点不会停止,而且也无法看到变量的值。
出现这种情况的话,多半是因为PHP Server的Path Mapping设置不正确。
错误的设置:
Path on server: http://localhost/sample
Local Path: /sample
修改为:
Path on server: /sample
Local Path: /sample
再次进行调试,就能正确在断点处停止。
至于调试时,变量值无法显示,即都显示为“uninitialized”的情况。
那是因为XDebug的版本问题,即2.1版前的XDebug会存在这个BUG。
在众多的XDEBUG版本中,如何找出自己需要的版本呢?
访问以下链接:
http://xdebug.org/find-binary.php
将phpinfo()的内容粘帖到上面链接的页面的输入框中,点击提交。
之后会看到分析结果,即推荐安装的XDebug版本。
备注:转的。