PHPMyadmin xampp错误
我拼命尝试获取phpMyAdmin访问xampp for linux 1.8.0 for Ubuntu 12.04 LTS。我知道这是一个普遍的问题,但我已经在网络上尝试了很多线程,而且我仍然坚持让它发挥作用。PHPMyadmin xampp错误
Xampp似乎运行正常,localhost开始页面不错,包括链接到侧边栏中的phpmyadmin。当我打开那个链接我得到一个403错误:
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".
If you think this is a server error, please contact the webmaster.
Error 403
localhost Apache/2.4.2 (Unix) OpenSSL/1.0.1c PHP/5.4.4
我已经试过无数的事情,包括修改的httpd-xampp.conf,其中的相关位现在看起来像:http://pastebin.com/J4f4tNVs
我的/ opt/LAMPP/phpMyAdmin的/ config.inc.php文件看起来像:http://pastebin.com/5PZPXK5s
以下的其他指令改变/ LAMPP的所有权:
chown -Rv nobody:root ./lampp/*
请帮帮我!
谢谢, 马特
我已经找到了解决办法在这里:http://www.apachefriends.org/f/viewtopic.php?f=17&t=50902&p=196185#p196185
编辑/opt/lampp/etc/extra/httpd-xampp.conf并添加要求所有在授予底部线块<Directory "/opt/lampp/phpmyadmin">
有以下代码:
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
Require all granted
</Directory>
谢谢。这个问题让我失望了,于是我转而去LAMP迎接最后期限。如果我再次尝试XAMPP,我会回来的。 – KindOfGuy 2012-07-25 09:03:13
谢谢jeebus。一直在寻找年龄。 – 2012-09-20 16:26:06
这需要被标记为答案,因为这正是它的原因! – mickburkejnr 2013-04-03 13:54:57