up vote 6 down vote favorite
share [g+] share [fb]

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

link|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
feedback

6 Answers

up vote 14 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.

link|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
feedback

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!

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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,............................

link|improve this answer
feedback

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).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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