I am using phpMyAdmin as a database manager on my Centos server, despite having access to all of them, in the phpMyAdmin.conf . I have SELinux turned off.
When trying to enter from my browser I get the following error:
Forbidden: You do not have permission to access / phpmyadmin / on this server
As a curiosity, putting the local server does not have access either from localhost .
Is phpMyAdmin 4.7.0 compatible with the PHP 7.1.4 version?
Previously with PHP 5.5 it worked correctly.
The versions of the technologies I use:
- Centos 7.3 .
- PHP 7.1.4 .
- PHP MyAdmin 4.7.0 .
- Apache 2.4.6 .
- MySql 10 .
phpMyAdmin.conf :
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
#Require ip 127.0.0.1
#Require ip ::1
Require all granted
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>