Xampp-无法访问phpmyadmin(禁止访问!)

ebdffaop  于 2022-11-09  发布在  PHP
关注(0)|答案(1)|浏览(211)

基本上这个错误开始出现时,试图访问phpmyadmin:

经过一些研究,我已经编辑了httpd-xampp.conf

Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
    <Directory "C:/xampp/phpMyAdmin">
        AllowOverride AuthConfig
          Require all granted 
        ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
    </Directory>

仍然有同样的问题。所以我改变了httpd.conf

<IfModule dir_module>
    Options +Indexes +FollowSymLinks
    DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
                   default.php default.pl default.cgi default.asp default.shtml default.html default.htm \
                   home.php home.pl home.cgi home.asp home.shtml home.html home.htm
</IfModule>

实际上,工作,但现在我的phpmyadmin出现这样:

所以现在我不知道需要做什么,发生了什么。
我的日志是:

j8yoct9x

j8yoct9x1#

目录列表并没有显示所有的文件。应该有一个index.php。这就是要执行的文件。如果这个文件存在,那么PHP没有运行。
因此,解决方案是重新安装xampp。

相关问题