New version of IIS7.0 error message details

  

Perhaps IIS is not a tool that everyone can use, but it is very important once it is needed, but IIS will also be wrong, but we rarely understand the error content of the error message, so Let's sort out the following and give you a reference.

1. The request screening module is configured to reject requests that contain double escape sequences. HTTP Error 404.11 - Not Found

1. Click Start. In the Start Search box, type Notepad. Right-click Notepad, and then click Run as administrator.

Note If prompted for an administrator password or for confirmation, type your password, or click Continue.

2. On the File menu, click Open. In the File Name box, type %windir%\\system32\\inetsrv\\config\\applicationhost.config and click Open.

3. In the ApplicationHost.config file, locate the configuration/system.webServer/security/requestFiltering/node in the file. About 360 lines will be changed to

Second, the solution for uploading large files with IIS7.0 error (Description: Request filtering module is configured to reject requests exceeding the length of the requested content)

The IIS7.0 asp uploads a large file with the following error:

HTTP Error 404.13 - Not Found

Description: The request filtering module is configured to reject requests that exceed the requested content length.

Error Code: 0x00000000

Notification: BeginRequest

Module: RequestFilteringModule

Requested URL: http://localhost:80/u2/upfile. Asp

Physical Path: G:\\web\\u2\\upfile.asp

Login User: Not Determined

Login Method: Not Determined

Handler : ASPClassic

The most likely cause:

Request filtering on the web server is configured to reject the request because the content length exceeds the configured value.

What you can do:

Confirm the configuration/system.webServer/security/requestFiltering/requestLimits@maxAllowedContentLength setting in the applicationhost.config or web.config file.

The error message when you access a Web site that is hosted on a server that is running Internet Information Services 7.0: " HTTP Error 404.13 - CONTENT_LENGTH_TOO_LARGE "

The solution is as follows

To resolve this Problem, please follow these steps:

1. Click Start. In the Start Search box, type Notepad. Right-click Notepad, and then click Run as administrator.

Note If prompted for an administrator password or for confirmation, type your password, or click Continue.

2. On the File menu, click Open. In the File Name box, type %windir%\\system32\\inetsrv\\config\\applicationhost.config and click Open.

3. In the ApplicationHost.config file, locate the < requestLimits > node.

4. Remove the maxAllowedContentLength attribute. Or, add a value that matches the Content-Length header, and the client sends the request as the size. By default, the value of the maxAllowedContentLength property is 30000000.

For example, modify the following code.

Copyright © Windows knowledge All Rights Reserved