Hi,
I have a wordpress blog sitting in one of the folders of my website, which is using RadCompression. I found that all log-in requests to the php blog were not processed, because all requests were going through the RadCompression module, which duly froze when it did not know how to handle the php log-in request. One of the guys from the hosting site fixed this by adding a Web.config file to that Wordpress folder:
This worked fine.
Here's the part I don't understand. He also made a change to the main Web.config file (for the whole site). Namely, he added two appSettings items:
Why is this necessary ? (It breaks if I remove those two new keys).
And does this mean I am using the TelerikCdn?
Cheers
I have a wordpress blog sitting in one of the folders of my website, which is using RadCompression. I found that all log-in requests to the php blog were not processed, because all requests were going through the RadCompression module, which duly froze when it did not know how to handle the php log-in request. One of the guys from the hosting site fixed this by adding a Web.config file to that Wordpress folder:
<configuration><system.webServer><modules runAllManagedModulesForAllRequests="false"><remove name="RadCompression"/></modules><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>This worked fine.
Here's the part I don't understand. He also made a change to the main Web.config file (for the whole site). Namely, he added two appSettings items:
<appSettings> <add key="Telerik.Skin" value="Black"/> <add key="Telerik.ScriptManager.TelerikCdn" value="Disabled"/><!-- this was added --> <add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled"/><!-- this was also added --></appSettings>Why is this necessary ? (It breaks if I remove those two new keys).
And does this mean I am using the TelerikCdn?
Cheers