-
Posted to
IIS7 - Publishing
by
SLORider
on
07-27-2009, 3:20 PM
Everyone: Traverse/Execute/List/Read (root folder only)
CREATOR OWNER:Full Control (subfolders and files only)
SYSTEM: Full Control (this folder, subfolders and files)
WebDAV Authors: Modify (this folder, subfolder and files)
Administrators: Full Control (this folder, subfolder and files)
Users: Traverse/Execute/List/Read (this folder, ...
-
Posted to
IIS7 - Setup
by
SLORider
on
07-26-2009, 7:46 PM
I discovered this same issue using WebDAV.
Use NTFS Symbolic Links in place of virtual directories to work-around.
See also: http://forums.iis.net/p/1159554/1911593.aspx
-
Posted to
IIS7 - Publishing
by
SLORider
on
07-26-2009, 7:41 PM
Problem:
I discovered this using WebDAV, but it is not WebDAV specific (see also: Virtual Directory error at root only)
When a virtual directory is pointed to the root of any drive, no contents are served. The drive appears completely empty and a 404 error is returned.
Example:
http://example.com/files (where 'files' is a virtual ...
-
Posted to
IIS7 - Publishing
by
SLORider
on
07-26-2009, 7:07 PM
[quote user="Hubert@Hubert-Associates.EU"]What is really needed, is a way to still use (test, maintain) the site on the local machine, while all "remote" users get the app_offline.htm contents.[/quote]
Create a second web site to host the app_offline message using the same host header name, but keep it in a stopped ...
-
Posted to
IIS7 - General
by
SLORider
on
11-24-2008, 2:40 AM
I am completely unable to change the "Content-Type" response header from global.asax!
This code should alter "Content-Type" and add a "Vary" header:
void Application_PreSendRequestHeaders(Object sender, EventArgs e) {
Response.ContentType = "application/xhtml+xml";
...
-
Posted to
IIS7 - Extensibility
by
SLORider
on
09-01-2008, 4:26 PM
I'm hoping to extend FTP logging using the IFtpLogProvider interface in Microsoft.Web.FtpServer. I created a test class like so:
public class LogProviderTest : IFtpLogProvider
{
void IFtpLogProvider.Log(FtpLogEntry logEntry)
{
// this should "prove" it ...
-
Posted to
IIS7 - Setup
by
SLORider
on
04-04-2008, 6:08 AM
^^^ A great bit of info! I could never get SMTP logging working under RC0 x64--now I know why!
-
Posted to
Classic ASP
by
SLORider
on
03-21-2008, 4:04 PM
You need to figure out what application/site is causing IIS to crash. Use performance monitoring to watch for memory leaks, etc.
This article should be helpful: http://technet.microsoft.com/en-us/library/bb742602.aspx
Also, take a look at this tool which automatically recycles processes before they crash: ...
-
Posted to
IIS7 - Setup
by
SLORider
on
03-20-2008, 7:08 PM
Very nice. Thank you for that revelation. Although, I did discover that the BITS Server Extensions requires both Logging Tools and Tracing—for whatever reason. There are probably others as well.
-Kevin
-
Posted to
IIS7 - Setup
by
SLORider
on
03-20-2008, 5:14 AM
With the excitement of finally installing the final RTM of 2008/IIS 7, I am really getting into trying to figure out WHY each feature is enabled or not. I am meticulously documenting every configuration step with this new install so that I will have a comprehensive "Server Configuration Manual" for disaster recovery. It is destined to be ...