Minggu, 04 November 2012

How to Solve XAMPP (phpMyAdmin Error) on Fedora


Error Code :
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


How to Fix it
1) Open httpd-xampp.conf file at /opt/lampp/etc/extra/ (sudo gedit /opt/lampp/etc/extra/httpd-xampp.conf)
2) Add Require all granted before </Directory>
<Directory "/opt/lampp/phpmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Allow from all
    Require all granted

</Directory>
3. Restart XAMPP (sudo /opt/lampp/lampp stop then sudo /opt/lampp/lampp start)

Tidak ada komentar:

Posting Komentar