Reputation: 13602
I have added my site to IIS 7 on my local machine. It has added fine but I can't get the permissions sorted on the folder. I get the following error when trying to browse the site:
HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid.
Cannot read configuration file due to insufficient permissions
Does anyone know what user I should add for the site to have correct permissions? I have tried:
Network Service Local service IIS_WPG Administrator
and nothing works.
Thanks
Upvotes: 3
Views: 16274
Reputation: 55
If you are using windows7 login as administrator and then run your iis local server program because in administrator mode you get the required iis permissions.
Steps to be followed are:
START->ALL PROGRAMS->ACCESSORIES
Right click on "CMD"
and choose "RUN AS ADMINITRATOR"
On command prompt type "net user administrator /active:yes"
and
press"enter"
Restart system and click on adminitrator icon to login
Hope this may fix ur problem
Upvotes: -6
Reputation: 141
Try to grant rights for "IUSR","IIS_USERS"
with : Read,Execute,List.
Upvotes: 7