gpt4 book ai didi

virtualbox - PhpStorm Web 服务器调试验证的问题

转载 作者:行者123 更新时间:2023-12-04 13:20:22 24 4
gpt4 key购买 nike

在 PhpStorm 中,我正在尝试调试远程服务器上的代码。 Web 服务器调试验证一直告诉我无法访问指定的 url (404)。

我的主机在windows下

我的服务器在 VirtualBox VM (Debian 9) 上

我在网络驱动器 V: 上使用 PhpStorm 编辑代码,指向我的 VM 的 /var/www/ 文件夹。这不是 VirtualBox 共享文件夹(不支持 Debian 9)。所以,当我在 V:\myproject 上工作时,我实际上是在通过 smb 在 VM 上处理 /var/www/myproject

我遵循了很多教程,但从未成功。目前,我有以下配置:

  • PHP Cli 远程解释器,使用部署配置
  • 所述部署配置的连接类型是 SFTP(连接测试正常)。根路径是 /var/www/myproject。 Web 服务器 url 是 https://my.project.local(url 在我的浏览器中测试过)
  • 映射本地路径:V:\myproject
  • 映射部署路径:/
  • 映射网络路径:/pub(这个项目是一个Magento 2应用程序。Pub是网络根目录)

当我尝试验证 web 服务器调试时,我选择“远程 Web 服务器”,创建验证脚本的路径是 V:\myproject\pub,部署服务器是前面描述的部署配置。

验证失败,显示“无法访问指定的 URL,原因是:‘请求失败,状态代码为 404’”。

有没有人已经完成了这个特定的设置? (PhpStorm + VirtualBox VM + SFTP 连接上的远程调试)。你成功了吗?也许我应该尝试另一种方法让它发挥作用?帮助将不胜感激!

最佳答案

有点晚了,但是对于碰巧在 Nginx 上运行 Magento 2 的其他人遇到这个问题,请查看 nginx.conf.sample,或者您正在使用的任何 ngxin.conf。

找到下面的 block :

# PHP entry point for main application
location ~ ^/(index|get|static|errors/report|errors/404|errors/503|health_check)\.php$ {
try_files $uri =404;
fastcgi_pass fastcgi_backend;
fastcgi_buffers 1024 4k;

fastcgi_param PHP_FLAG "session.auto_start=off \n suhosin.session.cryptua=off";
fastcgi_param PHP_VALUE "memory_limit=756M \n max_execution_time=18000";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;

fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

这样修改它,允许 Nginx 提供验证脚本:

# PHP entry point for main application
location ~ ^/(index|get|static|errors/report|errors/404|errors/503|health_check|_intellij_phpdebug_validator)\.php$ {
try_files $uri =404;
fastcgi_pass fastcgi_backend;
fastcgi_buffers 1024 4k;

fastcgi_param PHP_FLAG "session.auto_start=off \n suhosin.session.cryptua=off";
fastcgi_param PHP_VALUE "memory_limit=756M \n max_execution_time=18000";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;

fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

关于virtualbox - PhpStorm Web 服务器调试验证的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53652011/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com