尝试从networking访问XAMPP时出错
当我尝试access Xampp from a network
我尝试过access Xampp from a network
时出现以下错误,但是不知道如何解决这个问题。 任何帮助?
访问禁止:
只能从本地networking访问请求的对象。 该设置可以在文件“httpd-xampp.conf”中configuration。
在你的xampppath \ apache \ conf \ extra打开文件httpd-xampp.conf并find下面的标签:
# Close XAMPP sites here <LocationMatch "^/(?i:(?:xampp|licenses|phpmyadmin|webalizer|server-status|server-info))"> Order deny,allow Deny from all Allow from ::1 127.0.0.0/8 ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var </LocationMatch>
并添加
"Allow from all"
Allow from :: 1 127.0.0.0/8 {line}
重新启动xampp,你就完成了。
在更高版本的Xampp中
…你可以简单地删除这部分
# # New XAMPP security concept # <LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))"> Require local ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var </LocationMatch>
从同一个文件,它应该在本地networking上工作。
这个解决scheme适用于我: 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">
底部添加Require all granted line以具有以下代码:
<Directory "/opt/lampp/phpmyadmin"> AllowOverride AuthConfig Limit Order allow,deny Allow from all Require all granted </Directory>
这个答案是针对Ubuntu上的XAMPP的。
安装和下载的手册(官方网站)
http://www.apachefriends.org/it/xampp-linux.html
启动XAMPP后,只需调用以下命令:
sudo /opt/lampp/lampp start
你现在应该在屏幕上看到这样的东西:
Starting XAMPP 1.8.1... LAMPP: Starting Apache... LAMPP: Starting MySQL... LAMPP started.
如果你有这个
Starting XAMPP for Linux 1.8.1... XAMPP: Another web server daemon is already running. XAMPP: Another MySQL daemon is already running. XAMPP: Starting ProFTPD... XAMPP for Linux started
。 解决scheme是
sudo /etc/init.d/apache2 stop sudo /etc/init.d/mysql stop
并用sudo //opt/lampp/lampp restart
要解决大部分安全漏洞,只需调用以下命令:
/opt/lampp/lampp security
在改变这个文件之后
sudo kate //opt/lampp/etc/extra/httpd-xampp.conf
find并replace
# # New XAMPP security concept # <LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))"> Order deny,allow Deny from all Allow from ::1 127.0.0.0/8 Allow from all #\ # fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \ # fe80::/10 169.254.0.0/16 ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var </LocationMatch>