Arrrgh Sharepoint - problems with external users access
I've setup a Sharepoint 2010 site as a portal for governors to use - it works fine for me both externally and internally from every browser possible. Same for my boss, so we go live with it and start putting documents on it.
However half of the people who need to access it are unable to do so - all they get is the login prompt, they enter details and they are shown it again, as if the password is wrong, but I have checked and they are using the correct credentials. I can login as those users from anywhere so no problem with accounts.
At first I thought it was to do with IE, but just had a governor unable to login with Chrome either.
It is running basic authentication with SSL. I went basic to avoid them having to type domain\username.
I've looked in the IIS logs, it shows where someone has tried to access it, but it does not show anything about access denied. I assume the following is 2 attempts.
Code:
2012-02-03 16:21:17 192.168.1.13 GET / - 443 - 109.238.71.252 Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 2 5 231
2012-02-03 16:21:17 192.168.1.13 GET / - 443 <username> 109.238.71.252 Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 1 1326 344
2012-02-03 16:21:52 192.168.1.13 GET / - 443 <username> 109.238.71.252 Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 1 1326 380
2012-02-03 16:25:37 ::1 GET /_vti_bin/sitedata.asmx - 80 - ::1 Mozilla/4.0+(compatible;+MSIE+4.01;+Windows+NT;+MS+Search+6.0+Robot) 403 4 5 1
Does the 401 refer to a HTTP 401 error?
Whereas a successful login by me as the same user looks like this:
Code:
2012-02-03 16:31:52 192.168.1.13 GET / - 443 <username> 82.113.231.63 Mozilla/5.0+(Windows+NT+6.1)+AppleWebKit/535.7+(KHTML,+like+Gecko)+Chrome/16.0.912.77+Safari/535.7 200 0 0 86
2012-02-03 16:31:52 192.168.1.13 GET /SitePages/Home.aspx - 443 <username> 82.113.231.63 Mozilla/5.0+(Windows+NT+6.1)+AppleWebKit/535.7+(KHTML,+like+Gecko)+Chrome/16.0.912.77+Safari/535.7 200 0 0 724
2012-02-03 16:31:53 192.168.1.13 GET /SiteAssets/SitePages/Home/extranet.jpg - 443 readhead.s 82.113.231.63 Mozilla/5.0+(Windows+NT+6.1)+AppleWebKit/535.7+(KHTML,+like+Gecko)+Chrome/16.0.912.77+Safari/535.7 304 0 0
Obviously we're using different browsers there, what does his refer to though? Because he said he is using IE (and later Chrome) but that looks like Firefox?
Any ideas anyone?