Questions tagged [iis]

Internet Information Services (IIS) is a web server created by Microsoft for use with Microsoft Windows. Please mention which version of IIS you're running either in your question or by adding a version specific tag.

Wiki

IIS stands for Internet Information Services (IIS, formerly Internet Information Server) which is an extensible web server created by Microsoft for use with Microsoft Windows.

Several versions of IIS have shipped over the years, the most recent being:

  • IIS 10.0 - shipped with Windows 10 Fall Creators Update and Windows Server 2016
  • IIS 8.5 - shipped with Windows 8.1/Windows Server 2012 R2
  • IIS 8.0 - shipped with Windows 8/Windows Server 2012
  • IIS 7.5 - shipped with Windows 7/Windows Server 2008 R2
  • IIS 7.0 - shipped with Windows Vista/Windows Server 2008
  • IIS 6.0 - shipped with Windows 2003
  • IIS 5.1 - shipped with Windows XP Professional
  • IIS 5.0 - shipped with Windows 2000
  • IIS 4.0 - shipped with Windows NT Server/Workstation 4.0

Tag usage

The tag can be used for programming related problems when configuring IIS server for web development purposes. The tag can also be used for programming problems in implementing IIS services using IIS server.

Please note that https://serverfault.com/ is another StackExchange website, which can be used for more specific server installation and configuration related problems.

Important: Please ensure that you mention which version of IIS you're working with when asking a question. For example, there is a world of difference between IIS6 and IIS7+ and these products are very different, operationally and architecturally.

External Links

Related Tags

38900 questions
126
votes
5 answers

Font Face isn't working in IIS 8.0

I have a font-face in my program generated from Font Squirrel I just can't get it to work in IIS, it works in localhost. I added application/font-woff article to my MIME Types but it still doesn't want to work. Context --Fonts ----font…
joetinger
  • 2,589
  • 6
  • 29
  • 43
125
votes
3 answers

IISExpress Log File Location

IISExpress writes log and configuration data to pre-determined location out of the box. The directory is an "IISExpress" directory stored in a user's Documents directory. In the directory is stored the following folders files…
Adrian Russell
  • 3,995
  • 5
  • 25
  • 26
123
votes
21 answers

Directory does not exist. Parameter name: directoryVirtualPath

i just published my project to my host on Arvixe and get this error (Works fine local): Server Error in '/' Application. Directory does not exist. Parameter name: directoryVirtualPath Description: An unhandled exception occurred during the…
BjarkeCK
  • 5,694
  • 5
  • 41
  • 59
121
votes
3 answers

Error: "The configuration section 'system.webServer/management/delegation' cannot be read because it is missing schema

I am trying to publish a website from my computer to an IIS web server via web deploy. I have 3 servers. All servers have installed the same things (Webdeploy etc.) and the services are started (Web Deployment Agent Service and Web Management…
lucamuh
  • 1,235
  • 2
  • 8
  • 12
121
votes
7 answers

What is the aspnet_client folder for under the IIS structure?

I notice that there's frequently an aspnet_client folder under the standard IIS web folder structure. What is this used for? Is it needed?
Guy
  • 65,082
  • 97
  • 254
  • 325
117
votes
12 answers

The service cannot accept control messages at this time

I just stopped an Application Pool in IIS. When trying to start it, IIS complains that, The service cannot accept control messages at this time. (Exception from HRESULT: 0x80080425). What gives? Whence did this error come? Looking at the Event…
Shaun Luttin
  • 133,272
  • 81
  • 405
  • 467
114
votes
7 answers

Find if the installed PHP is threadsafe or nonthreadsafe?

How do I find out whether the installed version of PHP is threadsafe or not thread safe? Please note that I'm not asking the difference between a threadsafe/non thread safe installation. I would like to find out what is installed currently.
Josh
  • 1,287
  • 3
  • 10
  • 12
114
votes
20 answers

IIS: Handler "aspNetCore" has a bad module "AspNetCoreModuleV2" in its module list

I used angular .net core 2.2 template to build an application. In localhost working fine, When I host to IIS I'm getting this error. I'm using IIS 10 to host the application. Error, HTTP Error 500.21 - Internal Server Error Handler "aspNetCore" has…
Arun kumar
  • 1,535
  • 3
  • 12
  • 17
113
votes
31 answers

ASP.NET Core 1.0 on IIS error 502.5 - Error Code 0x80004005

I just updated my server (Windows 2012R2) to .NET Core 1.0 RTM Windows Hosting pack from the previous .NET Core 1.0 RC2. My app works on my PC without any issues but the server keeps showing: HTTP Error 502.5 - Process Failure Common causes of…
Vahid Amiri
  • 10,769
  • 13
  • 68
  • 113
111
votes
15 answers

IIS Express gives Access Denied error when debugging ASP.NET MVC

I have created an ASP.NET MVC 3 project, and am using IIS Express as the web server when developing. When I try to debug, I get the error message below. How can this be solved? Server Error in '/' Application. Access is denied. Description: An…
TheBoubou
  • 19,487
  • 54
  • 148
  • 236
110
votes
4 answers

IIS: Idle Timeout vs Recycle

In IIS there are two areas (well, more than two) where recycling can occur: Under the "Process Model" section → "Idle Timeout" (default 20 minutes) and Under the "Recycle" section → "Regular Time Interval" (default 1740 minutes) My questions…
Ricky
  • 2,850
  • 5
  • 28
  • 41
109
votes
19 answers

CS1617: Invalid option ‘6’ for /langversion; must be ISO-1, ISO-2, 3, 4, 5 or Default

Kept getting that error when running a fresh ASP.NET MVC application (straight out of VS 2015 Community) on a Windows 2008 Server machine.
Kyle Carlson
  • 7,967
  • 5
  • 35
  • 43
103
votes
7 answers

double escape sequence inside a url : The request filtering module is configured to deny a request that contains a double escape sequence

On my ASP.NET MVC application, I am trying to implement a URL like below : /product/tags/for+families When I try to run my application with default configurations, I am getting this message with 404.11 Response Code : HTTP Error 404.11 - Not…
tugberk
  • 57,477
  • 67
  • 243
  • 335
103
votes
3 answers

How do I enable gzip compression when using MVC3 on IIS7?

Does anybody know how to enable gzip compression in MVC 3? I'm using IIS7. Google Chrome Audit's result: Enable gzip compression (4) Compressing the following resources with gzip could reduce their transfer size by about two thirds (~92.23KB): …
imarkic84
  • 1,031
  • 2
  • 8
  • 3
103
votes
8 answers

Comet implementation for ASP.NET?

I've been looking at ways to implement gmail-like messaging inside a browser, and arrived at the Comet concept. However, I haven't been able to find a good .NET implementation that allows me to do this within IIS (our application is written in…
Doron Yaacoby
  • 9,412
  • 8
  • 48
  • 59