I just installed phpMyAdmin on my Virtual Private Server, but I can't access it from my browser to set it up. I verified that the folder permissions on /phpmyadmin are the same as my public_html folder.
When I go to url (http://www.testsite.com/phpmyadmin) I get a 403 error "You don't have permission to access /phpmyadmin on this server. Apache/2.2.15 (CentOS) Server at www.testsite.com Port 80"
I then go to my /var/log/httpd/error.log and see an entry for the denied access (note I partially replaced my IP address with x's) [Thu Oct 29 19:12:46 2015] [error] [client xx.xxx.68.18] client denied by server configuration: /usr/share/phpMyAdmin
I then edit /etc/httpd/conf.d/phpMyAdmin.conf which has the following lines
<Directory /usr/share/phpMyAdmin/>
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</Directory>
<Directory /usr/share/phpMyAdmin/setup/>
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</Directory>
In each section of code listed above, I add just below Allow from ::1
Allow from xx.xxx.68.18
I'm still getting the same 403 error. I would appreciate some insights and direction to fix this issue. Thanks