Error message 401.3: You do not have permission to view this directory or page using the credentials you supplied (access denied due to Access Control Lists). Ask the Web server's administrator to give you access to 'C:\inetpub\wwwroot'.
On Windows7 Pro, trying to run IIS. The way I am used to execute is on the browser "localhost". I used to have the code in the directory C:\inetpub\wwwroot. Even before I copy, I am hoping to see the image IIS welcome page. Once it is successful, want to copy the code as that was the way I used to do in Window XP. However I am getting the following message. I have administrator access to the machine and gave full permissions to the folder 'C:\inetpub\wwwroot'. Still the same message. Error message 401.3: You do not have permission to view this directory or page using the credentials you supplied (access denied due to Access Control Lists). Ask the Web server's administrator to give you access to 'C:\inetpub\wwwroot'. Can someone help me to address this issue. Thanks a lot in advance.
August 16th, 2012 5:41pm

You should be able to fix this by giving your account read / execute permissions to 'C:\inetpub\wwwroot'.
Free Windows Admin Tool Kit Click here and download it now
August 16th, 2012 8:41pm

You should be able to fix this by giving your account read / execute permissions to 'C:\inetpub\wwwroot'.
August 16th, 2012 8:47pm

Nigel, Thank you for your respone. Already there is full control, modify, read & execute, list folder . I see full contol, read, write, etc. Still did not help. Satish.SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
August 16th, 2012 9:49pm

Can you confirm if you are you using anonymous authentication for the default site?
August 16th, 2012 9:54pm

Nigel, Thank you for your respone. Already there is full control, modify, read & execute, list folder . I see full contol, read, write, etc. Still did not help. Satish.SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
August 16th, 2012 9:55pm

Can you confirm if you are you using anonymous authentication for the default site?
August 16th, 2012 10:00pm

How to use anonymous authentication for the default site. Can you please give steps. I log in with my id into the computer, which has administrator privileges. SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
August 17th, 2012 10:51am

How to use anonymous authentication for the default site. Can you please give steps. I log in with my id into the computer, which has administrator privileges. SatishDavaluri
August 17th, 2012 10:52am

Have a quick read through this: http://technet.microsoft.com/en-us/library/cc731244(v=ws.10).aspx
Free Windows Admin Tool Kit Click here and download it now
August 17th, 2012 11:59am

Have a quick read through this: http://technet.microsoft.com/en-us/library/cc731244(v=ws.10).aspx
August 17th, 2012 12:00pm

I did verify it is already anonymous authentication enabled. When I click on edit, found specific user : IUSR. Changed it to the id with which I log in and set the password. Then when went to the browser and typed in defaulthost, slightly better. I get the logon page of my application(this application built log page). When I click on it, HTTP Error 405.0 - Method Not Allowed The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used. <legend>Detailed Error Information</legend> Module StaticFileModule Notification ExecuteRequestHandler Handler StaticFile Error Code 0x80070001 Requested URL http://localhost:80/<name of the asp> Physical Path C:\inetpub\wwwroot\<name of the asp> Logon Method Anonymous Logon User Anonymous For a minute that problem solved. I am wondering why Microsoft had to make it so difficult from XP to Windows 7, or if that is how it is, should have given instructions - step by step. Appreciate very much if any one can help here. Thanks Nigel for your input. Please see if you can help further. Further, I have updated back the IUSR. Still the same. Able to get the log on page, when I click it, it gets to the above.
Free Windows Admin Tool Kit Click here and download it now
August 17th, 2012 5:52pm

A bit of searching online and I found the following IIS forum post by vdogra77 (http://forums.iis.net/t/1176772.aspx) This is typical to IIS 7.5 which has WebDAVModule installed by default which is causing this behavior and not recognizing PUT (and also DELETE) as valid Http verbs. Solution is to modify your web.config file with following and removing this module in the process. <system.webServer> <modules> <remove name="WebDAVModule" /> </modules> </system.webServer> Please try this and let me know if this works. If it doesn't, can you tell me a little about your application? Is it something you've created or is it part of a commercial product? Also, can you please enable logging and post anything you find that you think might help? A good guide can be found here http://learn.iis.net/page.aspx/579/advanced-logging-for-iis---custom-logging/
August 17th, 2012 8:03pm

A bit of searching online and I found the following IIS forum post by vdogra77 (http://forums.iis.net/t/1176772.aspx) This is typical to IIS 7.5 which has WebDAVModule installed by default which is causing this behavior and not recognizing PUT (and also DELETE) as valid Http verbs. Solution is to modify your web.config file with following and removing this module in the process. <system.webServer> <modules> <remove name="WebDAVModule" /> </modules> </system.webServer> Please try this and let me know if this works. If it doesn't, can you tell me a little about your application? Is it something you've created or is it part of a commercial product? Also, can you please enable logging and post anything you find that you think might help? A good guide can be found here http://learn.iis.net/page.aspx/579/advanced-logging-for-iis---custom-logging/
Free Windows Admin Tool Kit Click here and download it now
August 17th, 2012 8:03pm

What is the path of web.config , I am not able to find from C:, it is custom built, not commercial product.SatishDavaluri
August 17th, 2012 10:57pm

What is the path of web.config , I am not able to find from C:, it is custom built, not commercial product.SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
August 17th, 2012 10:58pm

Generally you need to either create the web.config file in the root of your application or website directory, or alternatively, let IIS create it for you by making some arbitrary configuration change with the configuration editor - the former option is more straightforward I think.
August 18th, 2012 8:25am

Generally you need to either create the web.config file in the root of your application or website directory, or alternatively, let IIS create it for you by making some arbitrary configuration change with the configuration editor - the former option is more straightforward I think.
Free Windows Admin Tool Kit Click here and download it now
August 18th, 2012 8:26am

How's everything going satish? Any progress?
August 19th, 2012 6:27pm

How's everything going satish? Any progress?
Free Windows Admin Tool Kit Click here and download it now
August 19th, 2012 6:28pm

Thank you Nigel for following it up. I was looking to where (path) the web.config to be created and what else to be in if the content you mentioned to be removed. I wish Microsoft provide direct help or step by instructions to upgrade from XP to Windows 7 for IIS. As essentially there is no change to the code and just this permission issue. SatishDavaluri
August 19th, 2012 11:12pm

Thank you Nigel for following it up. I was looking to where (path) the web.config to be created and what else to be in if the content you mentioned to be removed. I wish Microsoft provide direct help or step by instructions to upgrade from XP to Windows 7 for IIS. As essentially there is no change to the code and just this permission issue. SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
August 19th, 2012 11:13pm

Hi, For IIS related question, it is recommended to post the thread in IIS Forums. The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding. Regards, Vincent Wang TechNet Community Support
August 20th, 2012 12:06am

Hi, For IIS related question, it is recommended to post the thread in IIS Forums. The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding. Regards, Vincent Wang TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2012 12:06am

Vincent, Can you please give linkto IIS forum. I am assuming it is within microsoft site. Thank you for your advice. SatishDavaluri
August 20th, 2012 1:10am

Vincent, Can you please give linkto IIS forum. I am assuming it is within microsoft site. Thank you for your advice. SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2012 1:11am

Hi, You can click the IIS hyperlink in my previous post or using this one http://forums.iis.net/ Regards, Vincent Wang TechNet Community Support
August 20th, 2012 4:24am

Hi, You can click the IIS hyperlink in my previous post or using this one http://forums.iis.net/ Regards, Vincent Wang TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2012 4:29am

Hi Satish, When it says to remove the module, that really means you need to add the section: <system.webServer> <modules> <remove name="WebDAVModule"/> </modules> </system.webServer> If that doesn't work, definitely go for the IIS forums suggested by Vincent.
August 20th, 2012 5:56am

Hi Satish, When it says to remove the module, that really means you need to add the section: <system.webServer> <modules> <remove name="WebDAVModule"/> </modules> </system.webServer> If that doesn't work, definitely go for the IIS forums suggested by Vincent.
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2012 6:02am

HTTP Error 405.0 - Method Not Allowed The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used. Detailed Error InformationModule StaticFileModule Notification ExecuteRequestHandler Handler StaticFile Error Code 0x80070001 Requested URL <a href="http://:80/mypage.asp">http://<computerName>:80/mypage.asp Physical Path C:\inetpub\wwwroot\mypage.asp Logon Method Anonymous Logon User Anonymous Anyone, only if you know the solution to the above problem, please provide. Please do not redirect with general answers such a look into web.xml etc, not specifying exactly where that file exists. Same thing works in Windows XP. Only issue in Windows 7. Which means Microsoft had changed something related to IIS in Windows 7 and I am looking forward to precisely what to change please.SatishDavaluri
September 4th, 2012 6:48pm

HTTP Error 405.0 - Method Not Allowed The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used. Detailed Error InformationModule StaticFileModule Notification ExecuteRequestHandler Handler StaticFile Error Code 0x80070001 Requested URL <a href="http://:80/mypage.asp">http://<computerName>:80/mypage.asp Physical Path C:\inetpub\wwwroot\mypage.asp Logon Method Anonymous Logon User Anonymous Anyone, only if you know the solution to the above problem, please provide. Please do not redirect with general answers such a look into web.xml etc, not specifying exactly where that file exists. Same thing works in Windows XP. Only issue in Windows 7. Which means Microsoft had changed something related to IIS in Windows 7 and I am looking forward to precisely what to change please.SatishDavaluri
Free Windows Admin Tool Kit Click here and download it now
September 4th, 2012 6:48pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics