Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to upload my own asp.net website on the IIS through IIS manager. But when i do this i get the following error

HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid

Module  IIS Web Core
Notification    Unknown
Handler Not yet determined
Error Code  0x80070005
Config Error    Cannot read configuration file due to insufficient permissions
Config File \\?\C:\Users\Yasso\Documents\Visual Studio 2008\WebSites\WebSite5\web.config

I search many times for a solution for this error but all solutions not solve the error.

I have problem in IUSR account.I can't see this account in the "group or user names " in the properties of the web.config.

What is the problem?

share|improve this question
1  
I had this issue after reverting some changes via Subversion (although it could be a coincidence). I noticed that the Web.config file's ACLs were different to other files in the directory and it was not inheriting from it's parent. I enabled ACL inheritance and everything went back to normal. – ta.speot.is Nov 7 '12 at 0:01
My solution was slightly different. On some Windows Server 2008 machines, you need to give access to the "IIS_IUSRS" group, not the "IUSR" user--within the site folder security permissions. Make sure to go to your machine's location. – MacGyver Mar 13 at 2:18

11 Answers

up vote 8 down vote accepted

The message is saying that your configuration file is corrupt in some way. However it also says that it can't actually access the config file. So I'd ignore the original message about corruption/lack of validity as this is most likely just the effect of not being able to read the file due to a lack of authorization.

The reason it cannot read the config file is because the process running your web app does not have permission to access the file/directory. So you need to give the process running your web app those permissions.

The access rights should be fairly straightforward, i.e. at least Read, and, depending on your app, maybe Write.

Above, you mention IUSR etc. not being in the properties for web.config. If by that you mean that IUSR is not listed in the security tab of the file then it's a good thing. One doesn't want to give IUSR any kind of permission to web.config. The role IUSR is an anonymous internet user.

The file web.config should only be accessible through your application.

The problem is you haven't said which OS and IIS version you are using so it's difficult to advise which steps to take.

I.e. in IIS 7.5, the error message you're quoting is likely to occur due to your ApplicationPoolIdentity not being assigned the permissions. Your web application belongs to an application pool and so you need to give the permissions to the OS account that your web application's application pool runs under. Often this is something like NetworkService but you may have customized it to run under a purpose made account. Without more info it's difficult to help you.

share|improve this answer

Finally I get the solution for my problem. The asp.net account not appear in the IIS manager because I didn’t check its check Box in IIS to do this in windows 7 follow the steps

  1. Open control panel
  2. Click on” program” link (not uninstall programs)
  3. Click” turn windows features on/off” link
  4. locate” Internet Information services IIS” in the pop up window and expand its node
  5. Expand the” World Wide Web Service” node
  6. Expand “Application Development Features” node
  7. check the check box of”ASP.NET”
  8. Then click ok button

Now you will see the Asp.net account on the IIS manager and by default you see IIS account Now you should move you asp.net website from “my document” to another place the IIS have permission to access it (to any partition on your computer) Now browse your website from IIS manager and it should work. Thanks a lot for Jeff Turner for the solution

share|improve this answer
thanks...ssave lot of time – Moons Dec 21 '12 at 12:58
thanks, your answer solved my problem – Jawad Amjad 21 mins ago

This can also happen if the site is configured to use the IIS URL Rewrite module but it is not installed.

share|improve this answer
This was it for me.. removed the rewrite section (which is wasn't really needing anyhow) and all is good. – Andrew Patterson Feb 14 at 1:41
Thanks! This worked for me, too. – Josh Mar 28 at 13:00
Never would have guessed it. Saved the day!!! – Derek Hunziker May 10 at 21:29

You need to assign permissions for IIS_IUSRS on the local machine (but you don't have to assign for IUSR, in fact it will work even if you explicitly deny permissions).

To assign permissions, just right click on the folder and on the security tab make sure to grant the correct permissions, and if the user is not listed then click "ADD", and enter IIS_IUSRS (and make sure that under "domain" the local computer is selected, or enter in the name field YourLocalComputerName\IIS_IUSRS), and then you are good to go.

If you want you can instead of assigning permissions to the IIS_IUSRS group, you can instead assign to the app pool which should in general be "IIS APPPOOL\ app pool name".

share|improve this answer

In my case installing IIS URL Rewrite module solved the problem.

share|improve this answer
Thanks for the suggestion, I was actually going crazy today... – Sergio Vicente Mar 26 at 10:38
this is me reminding myself next time that this is what fixed it for me. what a horrible error :-/ – Simon_Weaver Mar 29 at 22:26

Make sure you have the application pool set to the correct version of the framework. You'll also need to make sure your aspnet or IUSR users have read access to the application's directory.

share|improve this answer
How can i do this?? "make sure your aspnet or IUSR users have read access to the application's directory" – Yasmeen Feb 9 '12 at 18:03
1  
go to C:\Users\Yasso\Documents\Visual Studio 2008\WebSites\WebSite5\ and make sure the WebSite5 directory has read permissions for the IUSR and IIS_IUSRS group. You do this by right clicking on the directory and selecting properties, then going to the security tab. – Jeff Turner Feb 9 '12 at 18:06
But i don't see IUSR and IIS_IUSRS group in the group or user name!! i don't know what is the problem?? – Yasmeen Feb 9 '12 at 18:08
do you see an option for network service? by default that is what the application pool will use when you're working on your desktop (if i recall correctly) – Jeff Turner Feb 9 '12 at 18:12
Option for network service in the properties or where?? Sorry Jeff i can't understand what you say?? – Yasmeen Feb 9 '12 at 18:17
show 2 more comments

Sometimes this message has can be missing components in your IIS environment e.g. a particular framework, or an IIS feature like dynamic compression, rather than permissions to web.config.

If this is the case, a solution can be to install and use the Microsoft Platform Installer and install those missing components - you might have to take a stab at what exactly is missing because the error log and message don't tell you.

share|improve this answer
NB: dynamic compression is in the 'windows features' list and not MPI – Simon_Weaver Mar 29 at 22:08

Pretty straight forward, IIS doesn't have access to your web.config. I'd start by taking the site out of your documents folder. Verify it has r/w permissions then as well.

share|improve this answer
I move the site from Document to another place but the same error appear – Yasmeen Feb 9 '12 at 18:04

This also happened to me when I had a default document of the same name (like index.aspx) specified in both my web.config file AND my IIS website. I ended up removing the entry from the IIS website and kept the web.config entry like below:

<system.webServer>
  <defaultDocument>
    <files>
      <add value="index.aspx" />
    </files>
  </defaultDocument>...
share|improve this answer

One other possibility that fixed this problem for me:

IIS -> Edit Permissions -> Security Tab -> Give "Users" appropriate permissions (or IIS_IUSRS, depending on your setup)

share|improve this answer

I too had the similar issue and i fixed it by commenting some sections in web.config file.

The project was earlier built and deployed in .Net 2.0. After migrating to .Net 3.5, it started throwing the exception.

Resolutions:

If your configuration file contains "<sectionGroup name="system.web.extensions>", comment it and run as this section is already available under Machine.config.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.