Add permission to phpmyadmin

After install magento application in server, we need to move that application to another server at the end of this process we got an error.

Forbidden :You don’t have permission to access /phpmyadmin on this server

To prevent this error you have to verify phpmyadmin: /etc/httpd/conf.d/phpMyAdmin.conf  [CENTOS]

In this file replace:

Require from 127.0.0.1 to your IP

or use

Require all granted

 

AddDefaultCharset UTF-8

# Apache 2.4

#Require ip 127.0.0.1
#Require ip ::1
Require all granted

# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1

 

Deja una respuesta