New XAMPP security concept Error
I Installed Xampp on CENTOS 6.2 and while accessing PHPmyadmin got the following error: New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". If you think this is a server error, please contact the webmaster. Error 403 localhost Solution: 1) Open httpd-xampp.conf which is at /opt/lampp/etc/extra/ 2) Find <Directory "/opt/lampp/phpmyadmin"> 3) Now just add Require all granted before </Directory> 4) So the code will look like this <Directory "/opt/lampp/phpmyadmin"> AllowOverride AuthConfig Limit Order allow,deny Allow from all Require all granted </Directory> 4) Now finally Restart the xampp with this command /opt/lampp/lampp restart If error persists then : your-xampppath\apache\conf\extra open file= httpd-xampp.conf and fint the below tag # Close XAMPP sites here <Location...