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

What causes this error, how can I fix it?

Detailed Error Information Module IIS Web Core Notification BeginRequest Handler Not yet determined Error Code 0x8007052e Config Error Can not log on locally to C:\inetpub\wwwroot as user administrator with virtual directory password
Config File Unavailable (Config Isolation) Requested URL http://192.168.0.3:80/ Physical Path C:\inetpub\wwwroot Logon Method Not yet determined Logon User Not yet determined Config Source

share|improve this question
1  
The "real" error message is usually someplace on the page. You should post the full content of the error page your getting if you want help with this question. – jfar May 30 '09 at 6:11

12 Answers

up vote 22 down vote accepted

Looks like the user account you're using for your app pool doesn't have rights to the web site directory, so it can't read config from there. Check the app pool and see what user it is configured to run as. Check the directory and see if that user has appropriate rights to it. While you're at it, check the event log and see if IIS logged any more detailed diagnostic information there.

share|improve this answer
correct bruce, had resolved this this morning, it appeared the systems admin guy changed the accounts passwords on the servers but omitted to change the user account login foir the virtual directory. It seems that the error showed overnight when the site had a period of inactivity, shutting down application process. Thanks for the answer – Stuart May 30 '09 at 22:58
For me it was the IT-department, that have changed the password on the service account. – JanBorup Aug 20 '12 at 10:43

I had the same issue, but reason was different.

In my web.config there was a URL rewrite module rule and I haven’t installed URL rewrite module also. After I install url rewrite module this problem solved.

share|improve this answer
+1000 completely asinine error message for having a config section it doesn't understand – Chris Marisic Aug 9 '12 at 19:50
1  
Thank you, great help - saved me hours! – Rob Bowman Dec 28 '12 at 13:00

We got this error after having to change our domain administrator password.

After monkeying with several settings I eventually found that in the application in ISS Manager->Basic Settings->Connect as... it was set to specifically use the domain administrator account rather than pass-through authentication (who knows why).

share|improve this answer
Thanks, this fixes my issue as well. – balalakshmi Dec 28 '12 at 9:20
Fixed my issue also (was set to run as a user that we had disabled, so we switched back to pass-through). – Josh May 10 at 20:17

Got this working alright but not based on suggestions above. My case is that am getting the 500 error running iis7 on a windows 2008 server in a domain. Just added a new user in the domain and basically allow read/execute access to the virtual directory or folder. Ensure that the virtual folder>basic settings> Connect As > Path credentials is set to a user with read/xecute access. You can test settings and both authentication and authorization should work. Cheers!

share|improve this answer

Experienced this issue today and resolved it. Someone had set the "Path Credentials" for the "Default web site" in IIS to run as a specific user. This same user changed her password either due to the password expiring or just a routine change. Setting the "Default website" to connect as the "Application User" via the basic settings option resolved it for me

share|improve this answer

For others out there, I got a similar error message due to trying to run a .Net 4 app in a .Net 2 app pool. Changing the .Net FX version for the app pool fixed it for me.

share|improve this answer

I was having a similar error installing php 5.3.3 with the Error Code 0x80070020 with a direction to a few lines in web.config in my www root directory (not the standard root directory).

The solution, while crude, worked perfectly. I simply deleted the web.config file and now everything works. I spent HOURS trying other solutions to no avail.

If anyone thinks this was stupid, please let me know. If anyone else has spent the same amount of time pulling out hair, try it and see (after backing up the file of course)

Regards FEQ

share|improve this answer

Didn't seem to be a permission issue for me - tried giving the IIS_IUSRS account full control over everything in the web service, just to see if this was the cause. The fix turned out to be recreating the application hosting the web service (i.e. the actual '.svc') in IIS

share|improve this answer

Was having the same error and fixing the credentials in the IIS app pool did not help. I finally resolved the error in IIS by selecting my website under Default Web Site, Advanced Settings->Physical Path Credentials->Specific User, and reentered the credentials for the app pool user, then restarted IIS and the error went away and my website came up successfully.

share|improve this answer

you probebly change your NT password. Enter to IIS right click on your application -> manage application -> advanched Setting -> physical path credentials.

good luck

share|improve this answer

As I got the 500.19, I gave IIS_IUSRS full access rights for the mentioned web.config and for the folder of the project. This solved the issue.

You can give permissions by

  1. right click on the folder / file
  2. selecting the tab "security"
  3. add the user IIS_IUSRS - don't forget the i in front of USRS and don't write an "e" as in USERS
share|improve this answer

open inet mgr from the start button and then double click o features delegate and the make all the properties read and write

then go to ispai and remove all the permissions

if above both not worked properly then make sure that u have installed the visual studio first before installation of iis

for better solution uninstall visual studio and then again install first iis properly then vs

thanxxxxxxxxxxxxx,............................

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.