Virtual directory not being configured as an application in IIS
- Details
- Category: ASP.Net
- Published on Sunday, 17 April 2011 05:20
- Written by Shabdar
- Hits: 38931
Problem
Solution
Change authentication mode to 'None' in web.config.
Go to your web.config file and change following line
This should solve this problem.
Note: If above solution does not work then make sure that the directory from where you website is running is configured as an application in IIS. To do this, you need to go into IIS and find your project folder on the server, right click to Properties. Under Application Settings click Create.
Cause
By default ASP.Net creates Windows authentication mode in Web.Config file. When you run this site locally on your computer, it runs fine. This is because it runs under current windows account credentials (i.e. Your windows login which may have administrative rights). But when you copy it to web server it runs under [MACHINENAME]\ASPNet account. If it does not have appropriate rights, server will throw this error.
Comments/Questions
|
This actually has to do with Visual Studio and how it deploys it web applications. From my experience you need to go into IIS and find your project folder on the server, right click to Properties. Under Application Settings click Create. It doesnt matter which authentication mode you use with a web project, IIS will not allow it to run as Web Site. It's configured to be a Web App.
=> Kevin (Thursday 22-May-08 11:56 AM)
|
|||
|
|||


