闻心阁

一蓑烟雨看苍生,半壶浊酒笑红尘

LinuxDeepin(Ubuntu) xampp中phpMyadmin无法启动

2012-09-12 约 1 分钟读完 搬砖秘籍

在linuxDeepin下安装了Xampp for linux,问题随之而来,在linux下竟然无法启动phpmyadmin,这着实让我纠结了很久。一直提示Access to the requested directory is only available from the local network这个错误,下面是解决方案。

1.找到httpd-xampp.conf文件 在lampp文件夹的etc/extra中找到httpd-xampp.conf文件。

2.修改中httpd-xampp.conf 的代码

在httpd-xampp.conf 中找到<Directory "/opt/lampp/phpmyadmin"> 加以下这句代码到:

Require all granted

修改后,的代码应该如下这样:

<Directory "/opt/lampp/phpmyadmin"> AllowOverride AuthConfig Limit Order allow,deny Allow from all Require all granted

3.保存,重新运行,即可进入。

/opt/lampp/lampp restart