-
Posted to
IIS.NET Site Feedback
by
peaceable_whale
on
07-18-2009, 11:18 PM
Thanks Steve.
-
Posted to
IIS.NET Site Feedback
by
peaceable_whale
on
07-18-2009, 7:06 AM
Just now when I posted a reply to http://forums.iis.net/t/1155254.aspx, I got the following notice:
Post Pending Moderation
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
If the administrator has configured this forum to support email notifications you will receive an email when your post ...
-
Posted to
IIS7 - General
by
peaceable_whale
on
07-18-2009, 6:59 AM
Thanks! Adding DisabledByDefault=0 has succesfully enabled TLS 1.2 server support.
The Microsoft Interop Test Server is good. However, could the Team also make a SSL/TLS test page like https://www.mikestoolbox.net/? That test page helps SSL/TLS client developer to debug their programs.
-
Posted to
IIS7 - URL Rewrite Module
by
peaceable_whale
on
07-17-2009, 6:32 AM
Some web applications may want to generate a different web.config file in order to take advantage of the new features introduced in URL Rewrite Module 2.0. However, there is not a varible for them to detect the version of the URL Rewrite Module currently. I suggest changing the IIS_UrlRewriteModule varible from 1 to the version number of the URL ...
-
Posted to
PHP Community
by
peaceable_whale
on
06-16-2009, 2:59 AM
Thanks! The problem doesn't seemt to affect the FastCGI Modules for IIS 5.1 and IIS 6. (I was not able to reproduce it with IIS 5.1, FastCGI 1.5 and PHP 5.2.9-2 NTS on VM)
-
Posted to
PHP Community
by
peaceable_whale
on
06-15-2009, 8:10 AM
301 is returned when the URL Rewrite Module is used.
-
Posted to
PHP Community
by
peaceable_whale
on
06-15-2009, 6:14 AM
Both of the following code...<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.microsoft.com/");
?><?php
header("Location: http://www.microsoft.com/",true,301);
?>
returns...HTTP/1.1 302 Redirect
Content-Type: text/html; charset=UTF-8
Location: ...
-
Posted to
FastCGI Handler
by
peaceable_whale
on
06-03-2009, 2:06 PM
This thread is being discussed at http://forums.iis.net/t/1158112.aspx.
-
Posted to
IIS 7 - FastCGI Module
by
peaceable_whale
on
06-03-2009, 2:02 PM
Hi Kanwal,
I believe that such validation is enough. According to the PHP Manual, the header function is to send a raw HTTP header; and according to section 4.2 of RFC 2616, "Each header field consists of a name followed by a colon (":") and the field value". These documents support that checking the colon is already enough. ...
-
Posted to
IIS 7 - FastCGI Module
by
peaceable_whale
on
06-03-2009, 3:48 AM
The FastCGI Module of IIS 7.5 has also removed the Response Header Validation. My concern and suggestion at http://forums.iis.net/t/1157034.aspx is therefore valid for the FastCGI Module of IIS 7.5 as well. Any comment?