Die Lösung finden Sie hier. Zusammenfassung folgt:
Bearbeiten Sie /opt/lampp/etc/extra/httpd-xampp.conf
.
Fügen Sie die Zeile Require all granted
hinzu bis zum Ende der <Directory "/opt/lampp/phpmyadmin">
wie folgt blockieren:
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
Require all granted
</Directory>
Ich habe dies gelöst, indem ich einen neuen virtuellen Host für phpmyadmin
erstellt habe
Für Windows-Systeme:
Hängen Sie Folgendes an C:/xampp/apache/conf/httpd.conf
an :
NameVirtualHost phpmyadmin.local
<VirtualHost phpmyadmin.local>
ServerName phpmyadmin.local
DocumentRoot "C:/xampp/htdocs/phpmyadmin"
<Directory "C:/xampp/htdocs/phpmyadmin">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
Ändern Sie den DocumentRoot/Directory
in den Pfad, in dem Sie Ihre Version von phpmyadmin
installiert haben .
Öffnen Sie die C:\Windows\System32\drivers\etc\hosts
Datei in einem Texteditor und fügen Sie die folgende Zeile hinzu:
127.0.0.1 phpmyadmin.local
Speichern Sie dann die Hosts-Datei und starten Sie xampp
neu .