-
Posted to
Windows Cache Extension for PHP
by
ruslany
on
11-19-2009, 1:57 PM
The Windows Cache Extension 1.0 for PHP - RTW is available for download. This is a final, production-ready release that is provided under an open source BSD license with the source code hosted and maintained on http://pecl.php.net/packages/wincache/.
Install the Windows Cache Extension 1.0 for PHP - RTW
To install the Windows Cache Extension for ...
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-17-2009, 12:50 PM
Can you please post the regex pattern that causes the crash?
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-16-2009, 8:21 PM
can you try adding the following PHP code at the beginning of the index.php file:
if ( isset($_SERVER['UNENCODED_URL']) ) {
$_SERVER['REQUEST_URI'] = $_SERVER['UNENCODED_URL'];
}
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-16-2009, 1:46 PM
Yes. this is possible to do with URL rewrite module. Just use the mod_rewrite import rules feature: http://learn.iis.net/page.aspx/470/import-apache-modrewrite-rules/.
Here is how the rules will look like after importing:
...
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-16-2009, 1:41 PM
What is the PHP application that you use for this web site? Can you post the rewrite rules?
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-16-2009, 1:39 PM
The rules are correct and they work fine on my wordpress installation. But I can see that they do not work on your site - the first rule just does not seem to get executed at all.
Can you enable Failed Request Tracing as described here and make a request? Then send me the trace log to ruslany at microsoft dot com.
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-09-2009, 4:20 PM
Yes, if the module gives this error, then it is not v2.0. You can also confirm it by checking the value of the server variable IIS_UrlRewriteModule. For example if you use PHP then you can get its value by using <?php echo $_SERVER[IIS_UrlRewriteModule]; ?>
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-09-2009, 4:14 PM
If in your rewrite rule you set appendQueryString="true" then the existing query string will be just appended to the rewritten URL as is. Can you check if this flag is set. If with that flag you do not see the original query string appended, then can you please post the rewrite rules that you have?
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-09-2009, 4:11 PM
I am not sure I understand what exactly is the problem. Can you explain in more details? Also can you post the rewrite rule that you have for this redirection?
-
Posted to
IIS7 - URL Rewrite Module
by
ruslany
on
11-09-2009, 4:05 PM
In the rewrite rule set the flag appendQueryString="false" (uncheck the "Append query string" check box in UI)