ian Posted June 2, 2011 Report Share Posted June 2, 2011 Orion 7.0.? for windows does not properly handle the IP6 localhost address of ::1 Microsoft SBS 2008 has both definitions in the hosts file, with ::1 last, with the result that all the links to the admin functions are from ::1, and fail with a 403 error. I suspect that the "Allow From 127.0.01" lines in the configuration need to be changed to include ::1, but there may be other changes also. Regards Ian Quote Link to comment Share on other sites More sharing options...
DrLeandro Posted January 7, 2012 Report Share Posted January 7, 2012 Try disable this lines in \UniServer\www\.htaccess like this: #------------------------------------------------------------------------------# Server root folder www .htaccess# This file provides server security limiting access to the localhost only.# Comment next four lines to deactivate. (Allows external access)#------------------------------------------------------------------------------ # Order Deny,Allow# Deny from all# Allow from 127.0.0.1# Allow from ::1# Allow from 192.168.1.100 This will disable uniserver firewall. As my grandfather would say: "Leave only ONE firewall running on your computer" Quote Link to comment Share on other sites More sharing options...
BobS Posted January 10, 2012 Report Share Posted January 10, 2012 Sorry, DrLeadro, that's NOT the solution for this problem. What you have specified is to open the entire directory to the Internet (the lines are all commented out). Also, the .htaccess files are not referred to as "firewalls," but rather Apache config files. See this location: http://httpd.apache.org/docs/2.2/configuring.html#htaccess . What you got right was the "Allow from ::1" which will pass requests from localhost IPv6 (::1). You can also add Allow from 192.168which will open up your server to the entire intranet, i.e., your private network. Regards,BobS Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.