Não consigo acessar o phpmyadmin após instalar o Lampp (XAMPP for Linux 1.8.1) no Ubuntu 12.04

5

Estou vendo este erro ao tentar abrir o 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'

Editar:

Eu comentei este código em "httpd-xampp.conf"., mas ele introduziu um novo problema.

# 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>

Agora estou vendo isso -

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
    
por Curious Apprentice 28.01.2013 / 12:17

5 respostas

9

Você precisa adicionar esta linha ("Exigir tudo concedido") ao arquivo httpd-xampp.conf na seção <Directory "/opt/lampp/phpmyadmin"> .

Veja como as alterações serão exibidas -

# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Require all granted
    Allow from all
</Directory>
    
por Curious Apprentice 28.01.2013 / 17:52
1

No XAMPP 1.8.1, você tem que permitir localhost manualmente, editando o arquivo httpd-xampp.conf para capturas de tela, visitando este .

    
por daksh21ubuntu 22.02.2013 / 21:52
1

apenas digite sudo /opt/lampp/lampp security e defina a senha para o seu phpmyadmin e entre no phpmyadmin como nome de usuário - lampp password - your_given_password

    
por Aung Zan Baw 30.08.2013 / 09:01
0

O acesso é limitado com a configuração padrão para esses endereços IP.

tente substituir

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

com

Allow from All
    
por spy 28.01.2013 / 14:06
0
  • No ubuntu, vá para

    / opt / lampp / etc / extra (local padrão)

  • Edite o httpd-xampp.conf (precisa de permissão sudo para editar)

    # since XAMPP 1.4.3
    <Directory "/opt/lampp/phpmyadmin">
        AllowOverride AuthConfig Limit
        Order allow,deny
        Require all granted
        Allow from all
    </Directory>
    
  • Reinicie o servidor xampp

por Pranav V R 15.06.2018 / 10:33

Tags