多用户 XDebug 和 PHP 调试

发布于 2024-07-06 17:27:14 字数 434 浏览 8 评论 0原文

如何设置多开发人员 XDebug PHP 环境?

我有以下设置:

  • 我有一台加载了 Apache 和 Xdebug 的 Linux 机器以及一个我认为正确的 php.ini 文件。
  • 我发现了一个 python 代理脚本,我用它来代理来自我的开发人员正在使用的 PDT Eclipse IDE 的调用,以访问在同一 Web 服务器上运行的 Apache/Xdebug。
  • 我将 php.ini 中的 idekey 设置为“ECLIPSE_DBGP”,并让 Xdebug 自动启动。

从代理的日志信息中,它表明没有具有密钥“ECLIPSE_DBGP”的服务器,并且它停止了请求。

有人遇到过这个问题,或者有一个逐步的设置来让它工作吗?

我已经用尽了我使用谷歌找到的东西。

How do you setup a multi-developer XDebug PHP environment?

I have the following setup:

  • I have a linux machine with Apache and Xdebug loaded and a php.ini file that I think is correct.
  • I found a python proxy script that I'm using to proxy the calls from the PDT Eclipse IDE's my developers are using to the Apache/Xdebug running on the same web server.
  • I set the idekey in php.ini to "ECLIPSE_DBGP" and for Xdebug to autostart

From the log information from the proxy it says that there is no server with the key "ECLIPSE_DBGP" and it stops the request.

Has anybody run into this or has a step by step setup to get this to work?

I have exhausted what I have found using google.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独患者 2024-07-13 17:27:14

您可以使用 ssh 将调试连接通过隧道传输回客户端计算机。 例如。 从您的客户端计算机,使用如下命令连接到服务器:

ssh -R 9000:localhost:9000 [email protected]

然后启动您的(本地)调试器,并启动远程脚本。 Xdebug(在服务器上)现在将建立与其 localhost:9000 的连接,但由于此端口被转发回您的本地计算机,因此您的(本地)调试器将接收该连接。

如果您在客户端使用 Windows,则可以使用 PuTTY 执行相同的操作。

请参阅 Spectator 文档了解更多详细信息。

You can use ssh to tunnel the debug-connection back to your client machine. Eg. from your client machine, connect to the server with something like:

ssh -R 9000:localhost:9000 [email protected]

Then fire up your (local) debugger, and start the remote script. Xdebug (at the server) will now establish a connection to its localhost:9000, but since this port is forwarded back to your local machine, your (local) debugger will receive the connection.

If you use Windows on your client side, you can do the same thing with PuTTY.

See the documentation for Spectator for some more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文