Access phpmyadmin from other machine than where xampp installed

  phpmyadmin, Xampp

Error message

Access forbidden!

New XAMPP security concept:

Access to the requested directory is only available from the local network.

This setting can be configured in the file “httpd-xampp.conf”.

 

Solution:

All you have to do is to edit the httpd-xampp.conf

from Require local to Require all granted in the LocationMatch tag.

 

 

#
# New XAMPP security concept
#
<LocationMatch “^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))”>
#Require local
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

LEAVE A COMMENT