IIS Authentication problem

Deeko

Lifer
Jun 16, 2000
30,213
12
81
A website I run has stopped working. It now requires all users to enter a username/password to access the site. I checked the IIS permissions, anonymous access is granted, the AppPool is set to Network Service user, which has access to the directories. Any ideas why this would start happening out of nowhere?
 

JDMnAR1

Lifer
May 12, 2003
11,984
1
0
Just a thought, but have any updates or policies been applied that might have impacted your users' User Authntication settings within IE (assuming internal users running IE)? Other than that, has your IUSR account had NTFS permissions to the directories revoked?
 

bunker

Lifer
Apr 23, 2001
10,572
0
71
Right click the site and select properties.

Click the Directory Security or File Security tab (don't remember which off the top of my head, and then, in the Authentication and access control section, click Edit.
Make sure anonymous access is set there and check to see if the Windows Integrated Authentication check box is checked, if so, uncheck it.
 

Rilex

Senior member
Sep 18, 2005
447
0
0
You don't need to uncheck Windows Integrated if Anonymous is enabled. Since the browser does not know the authentication mechanism used by IIS, it first makes a query to the web server. If it receives a 403.1, it will try Windows Integrated, etc.

Check to make suer that machinename\users have at least read on the website files.
 

ktwebb

Platinum Member
Nov 20, 1999
2,488
1
0
Well since you are using anonymous you really only need the IIS user account to have access to the files in that wwwroot directory but making sure the local user group has access won't hurt.
 

Thor86

Diamond Member
May 3, 2001
7,888
7
81
Maybe your IIS_USR account lost sync. Search google for iwamsync.vbs, should fix your issue if it is not permissions related.
 

Rilex

Senior member
Sep 18, 2005
447
0
0
IUSR_MachineName falls user MachineName\Users. No need to put IUSR itself on a directory unless you only want IUSR having access to the directory/files.

Above is true under 2003, but not 2000.