xdebug连接到客户端的超时。 :-(使用phpstorm 7.1.3 / vagrant / virtualbox / magento

时间:2014-07-18 18:39:32

标签: php magento vagrant xdebug phpstorm

有一段时间,我正在使用Phpstorm EAP,并且xdebug完美运行。我最近购买了个人许可证,并将我在EAP中的所有设置导入7.1.3。现在xdebug不起作用。

这里是xdebug.ini

zend_extension=xdebug.so

xdebug.remote_host = 192.168.56.1
xdebug.remote_cookie_expire_time = 36000
xdebug.remote_log = /tmp/xdebug.log
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
xdebug.remote_enable = 1
xdebug.remote_autostart = 0
xdebug.idekey="PHPSTORM"
xdebug.scream=0
xdebug.remote_connect_back=1
xdebug.show_local_vars=1

xdebug也在php.ini中显示。我甚至在http://xdebug.org/wizard.php中运行它并安装了最新版本。

Phpstorm正在侦听端口9000上的xdebug,以及"侦听PHP调试连接"是的。

我的xdebug日志经常告诉我:

Log opened at 2014-07-18 17:46:16
I: Checking remote connect back address.
I: Remote address found, connecting to 192.168.56.1:9000.
E: Time-out connecting to client. :-(
Log closed at 2014-07-18 17:46:16

我甚至尝试过注册表编辑:http://brianreiter.org/2010/09/18/fix-virtualbox-host-only-network-adapter-creates-a-virtual-public-network-connection-that-causes-windows-to-disable-services/

无论我尝试什么,xdebug都会超时。即使关闭了所有防火墙。

我在Windows 7 Enterprise上。 VM是puphpet / centos65-x64

修改 忘了提到Phpstorm中的IDE键是PHPSTORM

1 个答案:

答案 0 :(得分:11)

直接回答您的困惑,两个设置脱颖而出。它们是xdebug.remote_hostxdebug.remote_connect_back。前一个设置的IP不正确,尤其是在Vagrant设置中。它应该是10.0.2.2之类的东西。此外,不应定义和启用后一种设置。启用后,它完全ignores the former setting,因此无效。总而言之,前一种设置是错误的,后一种设置忽略了它,但后一种设置也是错误的。但是,这些设置只是Xdebug无法工作的部分原因。

扩展:使用Vagrant

在PhpStorm中设置Xdebug

Vagrant引入了标准的非虚拟化开发环境中不存在的复杂层。虽然上述几点可能是正确的,但是为了通过Vagrant在PhpStorm中运行Xdebug,还需要遵循其他设置和过程。我挣扎了一段时间,经过几次尝试失败,成功获得了连接。在线文档也存在很大的不足以实现这种设置,因此在成功完成整个设置之后,我在我的博客上记录了这些指南。详细描述了整个设置过程,并附有相关的屏幕截图。我也使用CentOS 6.5 64位,指南反映了这一点。它甚至已经针对Magento进行了测试。

How to configure Xdebug in PhpStorm through Vagrant