使用 Yii 和 PHPStorm/Idea 进行远程调试

发布于 2024-12-11 22:51:01 字数 344 浏览 0 评论 0原文

我在网上找到了一些关于本地或远程调试 Yii (PHP) 应用程序的文章。我能找到的所有示例要么代码和服务器是本地的(这很容易设置),要么所有代码​​都是远程的(这对我来说不起作用)。

基本上我的所有代码都通过挂载在运行 apache 的远程服务器上的 NFS 文件存储在本地。在远程服务器(redhat)上,我有 XDebug 设置并安装了 php5,但本地(Mac Snow Leopard)是我的代码,我没有 Web 服务器设置。我目前使用 PHPStorm 作为我的 IDE,在家里(这个环境正在工作)我可以使用 apache (Ubuntu) 很好地设置调试。但当我尝试在工作中远程执行此操作时,我似乎无法完成任何工作,并希望这里的大脑能够帮助我。

I have found a few articles online about debugging Yii (PHP) applications either locally or remotely. All the examples I can find are either the code and server are local (which is easy to setup), or all code is remote (which wasn't able to work for me).

Basically all my code lives locally through an NFS file mount on a remote server, which runs apache. On the remote server (redhat) I have XDebug setup and installed with php5, but locally (Mac Snow Leopard) is my code and I don't have a web server setup. I am currently using PHPStorm as my IDE and at home (this environment is at work) I can setup debugging fine with apache (Ubuntu). But I cannot seem to get anything to work when trying to do this remotely at work and was hoping the brains here might be able to help me out.

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

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

发布评论

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

评论(2

北风几吹夏 2024-12-18 22:51:01

我的猜测是本地 php.ini 中的 xdebug.remote_host 参数未配置。有关详细信息,请参阅 xdebug 文档

My bust guess is that your xdebug.remote_host parmaters in your local php.ini are not configured. See the xdebug docs for more information.

仅此而已 2024-12-18 22:51:01

我在远程服务器中使用 lighttpd 和 Xdebug,在路由器和 NAT 表后面使用本地 Komodo IDE。另外,本地我还有 Apache 2、Xdebug 和 Komodo IDE,调试从来都不是问题。问题是当我想远程调试时没有任何与 xdebug 的连接。解决方案是打开一个反向 shell,将远程 xdebug 端口隧道连接到我的本地主机端口。对于此设置,您需要远程计算机的 ssh 用户帐户,并告诉 ssh 使用端口 9000 打开本地主机的反向 shell。

I'm using lighttpd with Xdebug in my remote server and Komodo IDE local behind a router and a NAT table. Additionally local I've an Apache 2 and Xdebug and Komodo IDE too and it was never a problem to debug. The problem is when I want to remote debug there wasn't any connection to xdebug. The solution was to open a reverse shell to tunnel the remote xdebug port to my localhost port. For this setting you need a ssh user account to the remote machine and tell ssh to open a reverse shell with the port 9000 to your localhost.

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