我在Windows 10上托管我的网站的本地副本,而服务器在WSL Linux bash上运行。我已经安装了Visual Studio Code,并进行了PHP调试,配置了Xdebug,并且从chrome页面成功触发了调试。但是,VS代码然后告诉我,它“无法打开”我的php文件。我已经在json配置文件中尝试了各种pathMappings,但似乎没有任何效果。
有人可以帮我吗?提前非常感谢!
我的设置:
本地网站位置:D:/ local_websites / 来自linux服务器的相应路径:/ mnt / d / local_websites /
xdebug.ini:
zend_extension=xdebug.so
xdebug.show_error_trace = 1
xdebug.remote_enable = 1
xdebug.remote_connect_back = 0
xdebug.remote_autostart = 1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_log="/var/log/xdebug/xdebug.log"
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": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000,
"pathMappings": {
"/mnt/d/": "d:/",
}
}
]
}
答案 0 :(得分:0)
我解决了在远程打开工作区时出现的错误:
希望对您有帮助。