iis6

Hosting multiple sites in IIS 6, one need SSL

We've got a Windows Server 2003 running IIS 6 where we host multiple sites with different domains. www.site1.com, www.site2.com etc. Now one of these sites need a SSL certificate, so I ordered a certificate from rapidssl.com for the domain www.site1.com. The problem: After installing this SSL certificate all https request to this serve...

This type of page is not served when accessing an asp page in debug mode in Visual Studio 2008

I am trying to debug an old project in Visual Studio 2008. When I go to an asp page I get the following. Server Error in '/website' Application. This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please revi...

cdoSendUsingPort gives 8004020f but cdoSendUsingPickup works

I am using cdo to send email the following code fails Set cdoConfig = CreateObject("CDO.Configuration") With cdoConfig.Fields .Item(cdoSendUsingMethod) = cdoSendUsingPort .Item(cdoSMTPServer) = "localhost" .Update End With When I send an email I get the following error 8004020f I then changed the code to the following...

IIS 6 asp.net 4 mvc 2 attempt

Hi, I am trying to install my application onto IIS 6. It's asp.net 4 mvc 2. I get this error: Could not load file or assembly 'System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. In my Web.config I have this: <compilation debug="true"...

IIS6 Web Garden

I have a site that's becoming more active. I use a MySQL Database, .NET 3.5, IIS6, Memcached, and state server. I was looking into ways to improve performance and found that web garden adds additional threads for requests. I read that this should be equal to, or equal to + 1, the number of physical processors in the machine. So I tri...

IIS 6.0 Gzip Compression in aspx page

Hi, I am not good at IIS management.I enabled gzip compression for my web site but In IIS Temporary Compressed Files folder,i dont see any aspx type file.I just see js,text,css and some html files.Is that normal?Why dont i see aspx pages as compressed.Thats my metabase.xml and i think that my settings are true. IIsCompressionScheme Loc...

Is there something like IIS 6.0 Resource Kit Tools for IIS 7?

Is there something like IIS 6.0 Resource Kit Tools for IIS 7, specially the metabase explorer tool to be able to edit the IIS configurations without editing the .xml and .config files directly? ...

Is there a maximum reasonable file size to attach to a MIME email with PHP?

I run PHP on IIS6. I have some PHP that successfully sends a 1KB image as an attachment on an email. When I try and attach a 500KB PDF however (having changed the Content-Type), it hangs and after a few minutes I get "FastCGI process exceeded configured request timeout" (Error Number 258 (0x80070102)). Any thoughts on why it's taking ...

Session expiring after 20 minutes: Whether idle or not.

I'm having some trouble with users losing session data whilst going through an application form. It appears that they're losing session state part way through application forms. (ASP.NET 4.0 WebForms project, IIS 6.0) Session is stored out-of-process in the state server so it's not config changes, appdomain recycling, etc AFAIK. <sessi...

Frames caching issue on IIS

Hi, some time ago I had an entry point for application in index.aspx with following content: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <HTML lang="en"> <HEAD> <TITLE>xxx</TITLE> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> </HEAD> <frameset rows="68,*" border="0" frameborder=...

Cache-control in IIS6 not working

Hi, I'm using IIS 6 and added Cache-Control: no-cache header in IIS management console for entire website. However, when inspecting returned content with fiddler, I still see that Cache-Control: private is sent back to browser along with the response. No Cache-control: no-cache is sent though... Any ideas why? On the other hand, when I...

How do I create websites on remote servers using appcmd?

I have used appcmd to create websites on my local computer. There doesn't appear to be a server parameter which means that i have to remote desktop on to each machine that i'm deploying to and run the appcmd command. Also, can i use appcmd to deploy to IIS 6.0? If not, how do i deploy to remote IIS 6.0 web servers? I've tried the iisweb...

WCF Server Application Unavailable - how to run application written in .NET4.0 (IIS6+)

Hello, I am trying to run simple application (e.g. generated from template by VS.NET 2010) on IIS6. I changed it to run with .NET 4.0 (its application pool) and checked with regiis (this pool has 4.0). I also changed all possible httpHandlers (svc etc), to run with NET4.0. All possible rights are checked (i think so). Almost every requ...

Do you have to restart IIS when re-deploying a WCF servic?

Assuming that the service is running and in use, and you didn't change the contract or anything - just some underlying logic. After publishing the service to IIS, do you have to restart IIS? (If it matters, the InstanceContextMode is Single) Are there any instances where you would/would not need to? ...

How can I access UNC paths from inside a Perl CGI program under IIS6?

For space reasons, we need to move some files off our main file/webserver to another network fileserver. However, the original file/webserver is still responsible for providing access to these files, so that everything is seamless to the users. I can provide transparent file access by using DFS on the original server. I can also provi...

Not allowed to use reflection in asp.net mvc2 running on a secure server?

I'm trying to deploy a web site on a secure server, but I'm having problems with reflection. I guess this have something to do with security, but I'm not quite sure. The error occurs when doing Assembly.GetTypes() ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for...

ASP .NET 2.0 integration with ASP .NET MVC 2.0 ...

Is there any reason why this configuration should not work?: parent application (A) is a closed (uneditable) ASP .NET 2.0 application in IIS 6.0 an ASP .NET MVC 2.0 (B) application installed in a subfolder of A; however the MVC application CANNOT be set as an application in IIS as A will then not pass security information through I h...

Could not load type 'System.Web.Mvc.ViewMasterPage<dynamic>'.?

I am deploying a Asp.Net MVC 2.0 application on IIS 6.0. When I request any page I get the following error. Parser Error Message: Could not load type 'System.Web.Mvc.ViewMasterPage<dynamic>'. Source Error: Line 1: <%@ Master Language="C#" Inherits= "System.Web.Mvc.ViewMasterPage<dynamic>" %> Line 2: <%@ Import N...