Reputation: 37
I'm running a web application developed on ASP.NET; C# and SQL Server 2008; on Local Host on a Network. It is showing an error 500.19 for some Permissions... Can anyone help me out to solve this and run my website on localhost without hosting it online.....Have a look, What's the error is...
Upvotes: 0
Views: 910
Reputation: 137
Such issue occurs when, some wrong or duplicate element added in web.config file.
Verify your web.config file.
Also confirm execute version of virtual directory (32 Bit / 64 Bit)
Upvotes: 0
Reputation: 3204
It might be the issue of permissions for the directory/files for your application.
Make sure you have given the full permission to the users types that will be accessing the application.
For adding/editing permissions, you can navigate to the concerned folder and right click on it, selec properties and then go to security tab wherein you can edit the permissions of existing users as well as add new users with specific permissions.
Also, if you have your application hosted on IIS, there is also an option for changing permissions which will again, open the folder for you and you will have to follow the same steps as mentioned above.
Hope this helps.
Upvotes: 0