一.环境说明
服务端:
linux系统版本:CentOS 7.4.1708
testlink版本:1.9.18
访问端:
Chrome 70.0.3538.67
二.报错信息
访问http://xxxx/phpmyadmin页面出现如下报错:
-----------------------------------------------------------------------------------------------------------------
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".
-----------------------------------------------------------------------------------------------------------------
三.解决方法
连接到远程linux服务端后,修改"httpd-xampp.conf"配置文件再重启xampp即可!
1. 进入vi模式
vi ./etc/extra/httpd-xampp.conf
2. 往下拉,找到底部的这几行:
# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Require local
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
3. 将其中的 Require local 修改为 Require all granted
4. 退出 vi 时记得保存:
:wq
5. 最后重启xampp即可:
/opt/lampp/xampp restart