web-dev-qa-db-fra.com

Je ne peux pas accéder à phpmyadmin après l'installation de Lampp (XAMPP for Linux 1.8.1) sur Ubuntu 12.04

Je vois cette erreur en essayant d'ouvrir phpmyadmin (http://127.0.0.1/phpmyadmin) :

`New XAMPP security concept:

 Access to the requested object is only available from the local network.
 This setting can be configured in the file "httpd-xampp.conf".

 If you think this is a server error, please contact the webmaster.

 Error 403
 xser.com
 Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7`

Modifier:

J'ai commenté ce code dans "httpd-xampp.conf"., Mais il a introduit un nouveau problème.

# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|#server-status|server-info))">
    Order deny,allow
    Deny from all
    Allow from ::1 127.0.0.0/8 \
        fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
        fe80::/10 169.254.0.0/16

    ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

Maintenant, je vois ceci -

Access forbidden!

You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.

If you think this is a server error, please contact the webmaster.

Error 403

xser.com
Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7
6
Curious Apprentice

Vous devez ajouter cette ligne ("Exiger tous les droits") au fichier httpd-xampp.conf à la section <Directory "/opt/lampp/phpmyadmin">.

Voici à quoi ressembleront les changements-

# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Require all granted
    Allow from all
</Directory>
10
Curious Apprentice

il suffit de taper Sudo /opt/lampp/lampp security et de définir le mot de passe sur votre phpmyadmin, puis de vous connecter à phpmyadmin en tant que nom d'utilisateur - mot de passe lampp - motdepasse_given

2
Aung Zan Baw

Dans XAMPP 1.8.1, vous devez autoriser manuellement localhost en modifiant le fichier httpd-xampp.conf pour les captures d'écran, visitez cette page lien .

1
daksh21ubuntu
  • À Ubuntu, allez à

    / opt/lampp/etc/extra (emplacement par défaut)

  • Editez httpd-xampp.conf (besoin de l'autorisation Sudo pour éditer)

    # since XAMPP 1.4.3
    <Directory "/opt/lampp/phpmyadmin">
        AllowOverride AuthConfig Limit
        Order allow,deny
        Require all granted
        Allow from all
    </Directory>
    
  • Redémarrez le serveur xampp

0
Pranav V R

L'accès est limité avec la configuration par défaut à ces adresses IP.

essayez de remplacer

Allow from ::1 127.0.0.0/8 \
        fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
        fe80::/10 169.254.0.0/16

avec

Allow from All
0
spy