phpMyAdmin + CentOS 6.0 – Forbidden : phpmyadmin allow remote access centos

To remove and add access to phpmyadmin in asterisk :

Add your IP as follow:

vi /etc/httpd/conf.d/phpmyadmin.conf
<Directory "/usr/share/phpmyadmin">
    Order allow,deny
    Allow from all
</Directory>

Here in Allow from all and Allow from 192.168.0.10

Then issue the following command:

# service httpd restart

Now All done.

 

 

 

Leave a Comment