19

我想让远程调试与以下软件配置一起工作:

Win 7 Pro 64 位 WAMP 服务器 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

电话听筒变绿了,这究竟意味着什么,但这对我来说是一个积极的信号。

当我现在在本地网络服务器上运行我的 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 的响应。

有没有人知道在哪里搜索错误或者我可以尝试让这些东西正常工作?

非常感谢您提前提供的帮助,迈克尔

ps 抱歉,我不能发布超过两个链接,因为我是新来的,因此没有指向 xdebug 向导的超链接。

4

3 回答 3

13

也许有点晚了,但是...

在这里,您的设置有矛盾:

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. :-(

因此,我们的目标是让 Apachelocalhost 更好地解析为 IPv4 地址(在操作系统级别或 Apache 级别不禁用对 IPv6 的任何支持)。这可以通过在您的hosts文件中添加下一行来实现:

127.0.0.1 localhost

这个简单的技巧可以解决问题!现在localhost总是最好将其解析为 IPv4 地址,同时::1仍然可以完全理解。

于 2013-12-04T02:22:43.567 回答
6

您可以尝试禁用 IPV6 http://support.microsoft.com/kb/929852,我认为这是问题所在,当您尝试连接时。

找到远程地址,连接到 ::1:9000。

系统正在尝试与 IPV6 连接,我认为 XDebug 仅对 IPV4 启用。

于 2012-07-25T18:39:26.790 回答
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

于 2013-03-10T15:10:56.273 回答