我在使用 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
有人有这方面的经验吗?谢谢!