Specs of my web server:
Microsoft Windows Server 2003 SP2
x64 Enterprise Edition
Running IIS 6, ASP .NET ver 2.0.50727
Error when trying to access any .aspx page:
You are not authorized to view this page
You do not have permission to view this directory or page due to the access control list (ACL) that is configured for this resource on the Web server.
HTTP Error 401.3 - Unauthorized: Access is denied due to an ACL set on the requested resource.
Internet Information Services (IIS)
___________________________________________
All pages besides .aspx files work in the same virtual directory (.htm or .html).
Enable anonymous access in the "directory security" tab of the website is checked. It uses the IUSR_machinename account. That user is in the Users group on the server. It also is on the root folder and the permissions have propagated down.
"Enable default content page" is checked. Documents listed:
Default.aspx
Default.htm
Default.asp
index.htm
iisstart.htm
default.html
On "Virtual Directory" tab, Execute permissions is set to "Scripts and Executables" and the Application Pool listed is correct.
Permissions on website:
Administrators Full Control
Creator Owner Default
Internet Guest Account Read & Execute
Network Service Full Control
Power Users Full Control
System Full Control
Users Read & Execute
This is the error in the log file:
2012-10-15 20:03:38 W3SVC1 127.0.0.1 GET /Manage/Default.aspx - 443 - 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+WOW64;+SV1;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 401 3 0
Same thing without SSL:
2012-10-15 20:01:06 W3SVC1 127.0.0.1 GET /Manage/Default.aspx - 80 - 127.0.0.1 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+Win64;+x64;+SV1;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729) 401 3 0
Troubleshooting steps I've already done:
1) Checked to make sure anonymous access was set under Directory Security tab
2) Checked to make sure all permissions were propagating to child objects. (IUSR_machinename does have access)
3) Reinstalled ASP using these commands:
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -u
then
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -i -enable
4) I added the user "Everyone" with full control to the website permissions, still got the error
5) I added Full control to the IUSER account to test, it didn't work
5) I've tried recycling the App Pool
___________________________________________
Any suggestions or tips would be greatly appreciated. Thanks so much!