2

我需要有关我的 Homestead 配置的帮助。目前我正在运行一个使用 Laravel/Homestead 的开发项目,该项目在 VirtualBox Vagrant 上运行。我安装了 PHP 8.0.2 和 Xdebug 3.0.2 和 ZendOpCache v 8.0.2 但不幸的是我无法连接安装在我的 Windows 上的 VSCODE(IDE 和 Homestead 都安装在 Windows 上)

我的 Homestead IP 地址是 192.168.56.17,主机是 192.168.56.1

这是我的 XDebug 配置,我将 xdebug.ini 放在/etc/php/8.0/cli/conf.d/20-xdebug.ini

zend_extension = xdebug.so
xdebug.mode = debug
xdebug.idekey = VSCODE
xdebug.max_nesting_level = 512
xdebug.start_with_request = yes
xdebug.client_port = 9003
xdebug.client_host = 192.168.56.1

这是我的 VSCODE launch.json

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9003,
            "stopOnEntry": false,
            "log": true,
            "pathMappings": {"/home/vagrant/code/project" : "${workspaceRoot}"}
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9003
        }
    ]
}

请在这方面需要帮助

4

2 回答 2

1

你的问题是

xdebug.start_with_request = yes

只需删除它,你就会让你的 Xdebug 工作

顺便说一句,删除它后,像这样重新启动你的 FPM

$ sudo service php7.4-fpm restart

并重新启动浏览器和 IDE

于 2021-07-09T05:50:36.503 回答
0

我会尝试添加xdebug.discover_client_host = no到 xdebug.ini。无法在 Windows 上测试它,但它适用于我在 linux 上。

也许添加它也会有所帮助xdebug.log = "/tmp/xdebug.log",这样您就可以更好地看到那里发生的事情。

于 2021-07-09T01:52:20.070 回答