Eclipse调试PHP Web应用程序提供错误的启动URL(使用与服务器上实际路径不同的项目名称)

Eclipse debug PHP Web Application offers wrong launch URL (using project name which differs from actual path on server)

提问人:Vit Bernatik 提问时间:8/27/2023 更新时间:8/27/2023 访问量:9

问:

当我开始使用 Run->Debug As->PHP Web Application 调试新的 PHP 文件时,Eclipse 总是提供错误的 URL 路径,如下所示:

enter image description here

http://localhost/wp_leo/1/vbe_get_mem.php
但实际路径是:

基本上 Eclipse 在默认 URL 中提供了我的项目名称,但我在 Web 服务器上的实际路径只是 .
http://localhost/3/1/vbe_get_mem.phpwp_leo3

如何更改默认路径,以便每次调试新PHP时都不需要手动更改它?

Eclipse

评论


答:

0赞 Vit Bernatik 8/27/2023 #1

转到
“检查
”,然后更改为
Project->Properties->DebugEnable project specific settingsDefault Base URL->Base path/wp_leo/3

enter image description here

然后非常重要的事情。有时调试器会因此而中断。断点不再受到尊重......代码只是运行...要解决此问题,请转到

并删除所有内容。所以它是空的,像这样:
Window->Preferences->PHP->Server->Default PHP Web Server->tab Path Mappingenter image description here