Double Scape Error

1.      Locate the following directory:
%windir%\System32\inetsrv\config
2.     Open the applicationHost.config file in a text editor such as Notepad.
3.     In the applicationHost.config file, locate the following code:

<section name=”requestFiltering” overrideModeDefault=”Deny” />

4.     Replace the code that you found in step 3 with the following code:

<section name=”requestFiltering” overrideModeDefault=”Allow”/>

5.
Open the web.config of your DotNetNuke installation in a text editor such as Notepad.
6.

Insert this code into the web.config after <configSections>

<configuration>
<configSections>

</configSections>

<system.webServer>
<security>
<requestFiltering allowDoubleEscaping=”True”/>
</security>
</system.webServer>

</configuration>

This is for IIS 7.0

http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/9/threadid/110016/scope/posts/Default.aspx

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s


Follow

Get every new post delivered to your Inbox.