我想通过以下软件配置进行远程调试:
Win 7 Pro 64bit WAMP Server 2.2(32位)包括Apache 2.2.22,PHP 5.4.3,XDebug php_xdebug-2.2.1-5.4-vc9.dll JetBrains PHPStorm 4.0.3
1。)WAMP启动并运行,我的站点可以在localhost / fox /
下找到2.。)PHP Storm有一个项目,我的源文件和apache别名localhost / fox之间有一个映射
2.)我安装了php扩展XDebug并将以下行添加到我的php.ini
[xdebug]
zend_extension="c:/wamp/bin/php/php5.4.3/zend_ext/php_xdebug-2.2.1-5.4-vc9.dll"
xdebug.remote_enable=On
xdebug.remote_host="localhost"
xdebug.remote_port=9000
xdebug.remote_connect_back=On
xdebug.remote_autostart=On
xdebug.profiler_enable=On
xdebug.profiler_enable_trigger=off
xdebug.profiler_output_name=cachegrind.out.%t.%p
xdebug.profiler_output_dir="c:/wamp/tmp"
xdebug.remote_log="C:/wamp/tmp/xdebug.log"
xdebug.remote_cookie_expire_time=6000
这应该配置远程调试XDebug和回调地址。
我在这里检查了我的安装:xdebug.org/wizard.php
3.。)我配置了phpstorm,首先我添加了本地服务器
然后在此检查我的设置
http://www.bilder-hochladen.net/files/jrn0-2-c81e-jpg-nb.html
(我也试过127.0.0.1/fox作为服务器地址,而不是localhost)
我的调试设置: http://www.bilder-hochladen.net/files/jrn0-1-c4ca-jpg.html
现在我重启我的apache,我进入phpstorm,设置一个断点(它是红色的),点击功能
Run -> Start listen to PHP Debug Connections
电话接收器正在变成绿色,这究竟是什么意思,但这对我来说是一个正面的信号。
当我现在在本地webserver absolutley上运行我的php脚本时,没有任何反应,程序在断点处运行并且不会停止。
在Xdebuggers日志(C:/wamp/tmp/xdebug.log)中,我发现这些消息的载荷如下:
I: Checking remote connect back address.
I: Remote address found, connecting to ::1:9000.
E: Could not connect to client. :-(
Log closed at 2012-07-19 14:21:08
在互联网的某个地方,我发现了一个暗示,Windows防火墙可以阻止通信,所以我把它关闭了,但这没有帮助。
我还尝试通过telnet连接到localhost:9000,我收到了来自phpstorm的回复。
有人知道在哪里搜索错误或者我还能尝试让这些东西起作用吗?
非常感谢您的帮助, 迈克尔
P.S。抱歉,我不允许发布两个以上的链接,因为我是新来的,因此没有指向xdebug向导的超链接。
答案 0 :(得分:12)
也许有点晚......但是
在这里,您的设置存在矛盾:
xdebug.remote_host="localhost"
xdebug.remote_connect_back=On
这两个设置重叠。你的情况如何?
a)您只想从一个单一来源调试您的应用程序(例如,您正在开发并部署到localhost
)。
然后你差不多完成了:你已经定义远程主机是localhost
。注释掉remote_connect_back
行(;
)
b)您希望接受多个开发源(例如,在同一网络中调试应用程序的多台计算机)。
然后正在覆盖remote_host
行,因此您可以删除或评论它。
这实际上是您当前正在运行的配置。那么,它有什么问题呢?检查出来运行这个脚本:
<?
echo $_SERVER['REMOTE_ADDR'];
输出为::1
。那么,向您的Apache服务器发出请求的主机是localhost
。 Apache正在将该名称解析为IPv6地址::1
,这最终没有错。但是Xdebug无法连接到IPv6地址。参见:
I: Remote address found, connecting to ::1:9000.
E: Could not connect to client. :-(
因此,我们的目标是让Apache将localhost
解析为到IPv4地址(不会在操作系统级别或Apache级别禁用任何IPv6支持)。这可以通过在hosts
文件中添加下一行来实现:
127.0.0.1 localhost
这个简单的黑客可以做到这一点!现在localhost
总是最好被解析为IPv4地址,而::1
仍然可以完全理解。
答案 1 :(得分:6)
您可以尝试禁用IPV6 http://support.microsoft.com/kb/929852,我认为这是您尝试连接时的问题。
找到远程地址,连接到:: 1:9000。
系统尝试连接IPV6,我认为XDebug只能启用IPV4。
答案 2 :(得分:0)
您的代码中的断点究竟在哪里?我知道XDebug很有趣。
对于PHP 5.4,您的Xdebug设置应为
[XDebug]
zend_extension="<path to php_xdebug.dll>"
xdebug.remote_enable=1
xdebug.remote_port="<the port for XDebug to listen to>" (the default port is 9000)
xdebug.profiler_enable=1
xdebug.profiler_output_dir="<AMP home\tmp>"
http://www.jetbrains.com/phpstorm/webhelp/configuring-xdebug.html