Event Message: Unhandled Access Exception Excluded (IIS 7.5, Website Unable to Load)

I installed the Nuget source code on my company's web server, but when navigating the URL I get the following error (pulled from the Event Viewer on the server):

Event code: 4011 Event message: An unhandled access exception has occurred. Event time: 11/6/2013 9:02:54 AM Event time (UTC): 11/6/2013 3:02:54 PM Event ID: 2f5d6f7e594e47259b6dc050f82fc57d Event sequence: 2 Event occurrence: 1 Event detail code: 0 Application information: Application domain: /LM/W3SVC/2/ROOT/Nuget-3-130282237713215393 Trust level: Full Application Virtual Path: /Nuget Application Path: E:\omitted\omitted\Nuget\ Machine name: SERVERNAME Process information: Process ID: 1420 Process name: w3wp.exe Account name: DOMAIN\serviceAccount Request information: Request URL: http://subdomain.domain.net/nuget Request path: /nuget User host address: ***.**.***.** User: Is authenticated: False Authentication Type: Thread account name: DOMAIN\serviceAccount Custom event details: 

This will work fine on my local computer, but not on the web server. Does anyone have any ideas on what might be the problem? All I did was take the Nuget source code, modify the database data in the web.config file to point to my database and deploy it to a web server.

+6
source share
2 answers

Local user groups need to change permissions to resolve this error. It is resolved.

+14
source

I would like to clarify for someone else who comes to this issue. Permissions must be changed in the folder where the website is located in Windows Explorer.

+1
source

Source: https://habr.com/ru/post/957516/


All Articles