Reputation: 11341
I got this error when i want to browse my own asp.net website through IIS manager HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. The solution for this give IUSR user permission to access(read) the web.config file. But when i do this the IUSR account not appear on the "user and group names" in porperties windows. I don't know what is the problem??
Upvotes: 3
Views: 19541
Reputation: 30228
This answer helped me find it: Missing IUSR account on Windows Server 2008 R2 / IIS7.5
Just make sure that when you search, you go to server level on location and include all in types...
Upvotes: 0
Reputation: 11341
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
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 .It will work well thanks a lot Jeff Turner for trying to solve my problem really thanks. – Yasmeen just now edit 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. It will work well thanks a lot Jeff Turner for trying to solve my problem really thanks.
Upvotes: 7
Reputation: 1347
have you tried running aspnet_regiis?
open up a command prompt as administrator and cd to C:\Windows\Microsoft.net\Framework\v4.0.30319\ then run
aspnet_regiis -i
and see if that creates your iusr accounts. Don't forget to mark the question you asked related to this a few hours ago as answer as well.
Upvotes: 0