4

我在使用 Sublime Text 2、Vagrant 和 XDebug 进行调试时遇到问题。调试不会在断点处停止

我使用这个流浪者盒子https://github.com/bryannielsen/Laravel4-Vagrant

我在 StackOverflow 中阅读了很多问题,但没有一个问题能解决我的问题。 Xdebug 成功连接到 DBGP 客户端,但不会在断点处停止告诉不要将 xdebug 用作模块,而我正在用作扩展。好像没问题!其他人谈论 php.ini 配置,但我的日志似乎不错

当在 sublimetext 中启动 xdebug (使用https://github.com/Kindari/SublimeXdebug)时,它会很好地启动网页,但 sublime 会显示一条消息:等待执行而不是在断点处停止并且网页已满载

我的 xdebug 日志看起来不错

Log opened at 2013-09-25 12:01:56
I: Checking remote connect back address.
I: Remote address found, connecting to 10.0.2.2:9001.
I: Connected to client. :-)
-> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" fileuri="file:///var/www/public/index.php" language="PHP" protocol_version="1.0" appid="14735" idekey="sublime.xdebug"><engine version="2.2.3"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2013 by Derick Rethans]]></copyright></init>

-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug" status="stopping" reason="ok"></response>

Log closed at 2013-09-25 12:01:56

Sublime text 2 正在等待监听 9001 端口,这是我的 php.ini 配置

xdebug.remote_enable=1
xdebug.remote_port=9001
xdebug.remote_autostart=0
xdebug.remote_connect_back=1
xdebug.remote_log=tmp/xdebug.log

有人有这方面的经验吗?谢谢!

4

1 回答 1

0

我从未将它与 Sublime 一起使用。(实际上我在谷歌上搜索它是否可能并登陆到这个页面:)

无论如何,我会尽力帮助你。我在使用 NetBeans 时遇到了类似的问题,我发现如果您不指定远程主机,xDebug 将不会进行回调。这就是 NetBeans 没有在任何断点处停止的原因,它根本没有从 xDebug 得到任何响应。

尝试添加到您的 php.ini:

xdebug.remote_host = 10.0.2.2

我在 VM 上的 xdebug.ini 如下所示:

xdebug.remote_enable = On
xdebug.remote_host = 10.0.2.2

PS 还要确保在执行 phpinfo() 时填充了这些设置。

于 2013-10-23T20:36:28.583 回答