Install WordPress on IIS of dailyrazor.com

Edit web.config, the file is under the hosting of dailyrazor.com.  Add the following code to web.config:

<?xml version=”1.0″?>
<configuration>
<system.web>
<customErrors mode=”Off”/>
</system.web>
<system.webServer>
<httpErrors errorMode=”Detailed” />
<rewrite>
    <rules>
        <rule name=”Main Rule” stopProcessing=”true”>
            <match url=”.*” />
            <conditions logicalGrouping=”MatchAll”>
                <add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
                <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
            </conditions>
            <action type=”Rewrite” url=”index.php” />
        </rule>
    </rules>
</rewrite>
</system.webServer>
</configuration>

Please note that max password length for database user is 12 characters. And FastCGI Extension for IIS 6.0 and IIS 5.1 should be installed also.