Xampp的内部文件,如PhpMyAdmin\index.php、htdocs\index.php、config.php、response.php、whitelist.php,都处于调试模式

Xampp的内部文件,如PhpMyAdmin\index.php、htdocs\index.php、config.php、response.php、whitelist.php,都处于调试模式,php,mysql,phpmyadmin,xampp,phpstorm,Php,Mysql,Phpmyadmin,Xampp,Phpstorm,我的安装是: Web服务器:Xampp版本3.2.4 IDE:PhpStorm版本2020.1 操作系统:Windows 10 Home 64位 PHP版本:7.4.9 问题: 当我在浏览器中只启动PhpMyAdmin而不打开PhpStorm IDE(版本2020.1)时,PhpMyAdmin会在浏览器中愉快地打开,没有任何问题,但当我在PhpStorm IDE(版本2020.1)中启动PhpMyAdmin时,则PhpMyAdmin\index.php,htdocs\index.php,co

我的安装是:

  • Web服务器:Xampp版本3.2.4
  • IDE:PhpStorm版本2020.1
  • 操作系统:Windows 10 Home 64位
  • PHP版本:7.4.9
问题:

当我在浏览器中只启动PhpMyAdmin而不打开PhpStorm IDE(版本2020.1)时,PhpMyAdmin会在浏览器中愉快地打开,没有任何问题,但当我在PhpStorm IDE(版本2020.1)中启动PhpMyAdmin时,则
PhpMyAdmin\index.php
htdocs\index.php
config.php
OutputBuffering.php
response.php
whitelist.php
message.php
和Xampp的其他内部文件显示在phpStorm IDE中,而phpMyAdmin页面不显示在浏览器中。此外,Xampp的这些内部文件在调试模式下运行

错误。日志

[Fri Oct 30 01:52:23.726544 2020] [ssl:warn] [pid 8648:tid 624] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Oct 30 01:52:23.802080 2020] [core:warn] [pid 8648:tid 624] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Fri Oct 30 01:52:23.812081 2020] [ssl:warn] [pid 8648:tid 624] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Oct 30 01:52:23.849084 2020] [mpm_winnt:notice] [pid 8648:tid 624] AH00455: Apache/2.4.46 (Win64) OpenSSL/1.1.1g PHP/7.4.9 configured -- resuming normal operations
[Fri Oct 30 01:52:23.849084 2020] [mpm_winnt:notice] [pid 8648:tid 624] AH00456: Apache Lounge VC15 Server built: Aug  4 2020 11:50:23
[Fri Oct 30 01:52:23.849084 2020] [core:notice] [pid 8648:tid 624] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Fri Oct 30 01:52:23.852085 2020] [mpm_winnt:notice] [pid 8648:tid 624] AH00418: Parent: Created child process 3080
[Fri Oct 30 01:52:24.329479 2020] [ssl:warn] [pid 3080:tid 632] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Oct 30 01:52:24.404848 2020] [ssl:warn] [pid 3080:tid 632] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
[Fri Oct 30 01:52:24.443850 2020] [mpm_winnt:notice] [pid 3080:tid 632] AH00354: Child: Starting 150 worker threads.

不要将代码作为屏幕截图发布。请检查路径:
xampp\apache\logs
,并查看
错误中是否有任何线索。log
请检查我在上面添加的error.log文件尝试关闭IDE中的“侦听PHP调试连接”(带有电话的图标)选项。它有帮助吗?您必须已将Xdebug配置为自动尝试调试每个脚本,而不管是否存在“debug me”标志(COOKIE或GET/POST参数)。此外,您还可以激活“电话手柄”图标(这就是
duck\u in\u hat
所说的)。要么删除php.ini中的此类Xdebug“autostart”(因此调试将仅在需要时进行),要么至少关闭IDE中的“phone handle”图标(Xdebug仍将尝试调试,但由于不会得到响应,因此会在一个小延迟后继续正常执行)。