Questions tagged [iis-6]

IIS 6.0 is the version of IIS shipped with Windows Server 2003. It uses an architecture substantially different from IIS 5 and earlier versions, called Worker Process Isolation Mode.

IIS 6.0 is the version of IIS shipped with Windows Server 2003. It uses an architecture substantially different from IIS 5 and earlier versions, intended to increase security and performance, called Worker Process Isolation Mode.

Key changes from IIS 5.0:

  • Uses HTTP.SYS as a fast, secure kernel-mode listener, cache, and correctness parser for HTTP requests - instead of InetInfo, which ran ISAPIs and user code as LocalSystem
  • Isolates all user web code into low-privileged processes, which run as Network Service by default
  • Introduces the concept of an Application Pool; Application Pools group IIS applications into worker processes, which helps Admins isolate failures to specific processes and not the whole server (as was the case with InetInfo / Low-isolation applications in IIS 5 and earlier)
  • Introduces the Web Service Extension list, which restricts arbitrary executable code
  • Uses a central App Pool manager service, W3ADM, which monitors the health of App Pools and recycles them when needed.
1000 questions
3
votes
1 answer

Sending Email via MS SMTP Server Fails Because FQDN set to Server Name

Some emails sent from our SMTP Server (Windows 2008 running IIS6 SMTP) have begun failing with some of the following errors: Action: failed Status: 5.5.2 Diagnostic-Code: smtp;504 5.5.2 <178867-WWW1>: Helo command rejected: need fully-qualified…
3
votes
3 answers

Is there a command line parameter for inetmgr.exe or inetmgr6.exe to specify the remote computer name?

I want to run something like the following and immediately connect to that server. c:\windows\system32\inetsrv\InetMgr6.exe \servername or c:\windows\system32\inetsrv\InetMgr.exe \servername
user46593
3
votes
2 answers

differences in style rendering: windows server 2003 to windows server 2008

I copied code from our live site (running windows server 2003) to a new QA virtual machine (running windows 2008). When I view the page source info its exactly the same, but the appearance of the sites is very different. Is this caused by the…
3
votes
1 answer

Show internal website through iframe

I have a public website with an iframe pointing to a private website (only visible inside my company's lan). I'd like that the iframed pages could also be visible from the outside. Is it possible to achieve? My public server is a Windows Server 2003…
tommasop
  • 200
  • 1
  • 3
  • 10
3
votes
3 answers

IIS6 + PHP + FastCGI 500 Errors - Where to start looking?

I've set up IIS6 with FastCGI to use php-cgi.exe. I have some php websites by external parties, that I'm trying to run in a test environment. One of the websites just plain gives me a FastCGI Error Page. This does not happen on every page, it just…
Bertvan
  • 133
  • 1
  • 1
  • 7
3
votes
3 answers

How to compare two IIS 6 configurations

When I have two different machines with IIS 6, let's say for testing and production: Is there a way to compare all settings (App-Pools, Web Service Extensions, ...)? Or even better: automatically sync both (except IP's etc.)
icnivad
  • 327
  • 3
  • 12
3
votes
1 answer

What's the difference between HcDynamicCompressionLevel and HcOnDemandCompLevel?

I currently have this assigned in IIS6 metabase explorer: HcDynamicCompressionLevel=9 HcOnDemandCompLevel=10 HcDynamicCompressionLevel=9 HcOnDemandCompLevel=10 I read that having a level value of 10 is not good, causes the CPU to…
Level1Coder
  • 245
  • 2
  • 10
3
votes
2 answers

How do I prevent IIS from overriding my culture set in ASP.NET?

I have a client in the US that wants all time displayed as military time, but everything else is supposed to be US Culture. In my global.asax I am creating a copy of the US culture and applying the GB time display to create a US culture with…
Brett Allen
  • 368
  • 4
  • 6
  • 20
3
votes
2 answers

IIS website asking for credentials when viewed outside network

I have configured a website on IIS 6. When I access the website from inside the company network it works fine. When I try to access the website from outside the network, the browser asks for Windows credentials. The application pool is configured…
Gilles
  • 171
  • 1
  • 9
3
votes
2 answers

IIS Default Website for Domains that have not been setup

Let me preface this with the fact that I know very little about IIS. I have several websites on my server (Windows 2003 IIS) I have domains that I haven't setup in IIS yet that point to my IPAddress. When you try to go to these sites they redirect…
Jason
  • 279
  • 2
  • 10
3
votes
4 answers

When I run aspnet_regiis.exe, it just shows me the command line options and doesn't do anything - why?

I'm trying to run aspnet_regiis.exe in order to perform a couple of tasks on my development machine (running IIS 6 on Windows Server 2003 and a member of an Active Directory domain). So I change to the folder…
Mark Bell
  • 308
  • 2
  • 5
  • 18
3
votes
3 answers

inetmgr crashes after adding IIS6 MetabaseCompatibility Role

I added the IIS6 MetabaseCompatibility Role to my Server 2008 but can no longer launch inetmgr: IISMANAGER_CRASH IIS Manager terminated unexpectedly. Exception:System.NullReferenceException: Object reference not set to an instance of an object. …
Josef
  • 393
  • 1
  • 3
  • 8
3
votes
3 answers

What is better for an IP ban? At firewall (shorewall) level, or at IIS level?

I have a spambot that likes to spam my websites. I mailed to abuse@isp, but he ignored me. Attacks always come from the same ip, and i used IISIP to add the spammer IP to all of my websites. I am wondering, since i am using a linux box with…
Magnetic_dud
  • 1,036
  • 2
  • 15
  • 29
2
votes
2 answers

IIS Compression: Enable GZIP and DEFLATE using Powershell

How does one do the following things with IIS 5.1/6.0 using PowerShell: Enable HTTP Compression Set GZIP and DEFLATE file extensions Enable Dynamic and Static compression for GZIP and DEFLATE Set the compression lvl Any pointers to tutorials on…
brad
  • 283
  • 2
  • 7
2
votes
1 answer

IIS 6 Available certificates list

Consider a Win2003 + IIS6 machine that has a single website. Let's call it myDomain.com. The task is to secure the site with an SSL certificate. Currently have a .pfx certificate. Using the MMC app, the certificate is imported successfully…
p.campbell
  • 4,407
  • 6
  • 41
  • 51