LinuxDeepin(Ubuntu) xampp中phpMyadmin无法启动
在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