I just installed xampp 1.8.0 for linux and when I opened phpmyadmin I got this error Access Forbidden!!
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".
I tried this post but with no luck. please help. I am opening it from my own PC not from any other network.
On Xampp 5.6.3 Windows Path C:\xampp\apache\conf\extra\httpd-xampp.conf comment in this: #Require local
If you see below error message, when try into
phpyAdmin
:You can do next (for XAMPP, deployed on the UNIX-system): You can try change configuration for
<Directory "/opt/lampp/phpmyadmin">
and change security settings to
First - comment pl module, second - change config for node Directory. After it, you should restart
httpd
daemonNow you can access http://[server_ip]/phpmyadmin/
Nothing worked for me but following thing was awesome:
1) Open
which is at
2) Find
<Directory "/opt/lampp/phpmyadmin">
3) Now just add Require all granted before
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>
5) Now finally Restart the xampp with this command /opt/lampp/lampp restart
That's it and you are Done!
It also work with xampp. :)
on osx log into your terminal and execute
and replace
with this
and then restart apache and mysql
or use this command
open your http.conf file
Comment "Deny from all" in the following section,
Edit:
Try to add "Allow from all" before "ErrorDocument" line. Hope it helps.