惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

博客园 - 焰凌

Poor code: Dynamic changing of table schema When we need to inherit from WSS WebPart class? Why no effects when change the "Site Master Page Settings" from "Site Actions - Site Settings - Look and Feel - Master Page"? 怎样在MOSS2007和WSS3.0中修改服务帐户和密码 HttpApplication机制 "NOT IN", "JOIN...IS NULL", "NOT EXISTS" 之间的效率对比 为SharePoint新项目做准备 MOSS 2007 SSP (1) How to create and delete a SharePoint site by web application Search user of specific domain name Received DGT's document 水晶报表PUSH模式多个表数据的显示 上海电信之具有地域歧视的霸王条款 来上海一年多了,第一次感冒! differentia of [string str=null;] and [string str="";] 搬家了,没宽带了 工作以后 找不到状态了! 页面缓存的困扰
The issue of upload big file on SharePoint with IIS7
焰凌 · 2008-05-27 · via 博客园 - 焰凌

Today, I tried to upload a file around 40M to a library. But it failed with 404 error number. I tried to do the same on my other SharePoint server, successed.

The defferences between these two server is the OS and IIS version. After I tested, the SharePoint based on IIS 7 does not allow me upload one file greater than 29M (include 29M).

This problem is caused by IIS 7 default settings. To resolve this problem, please do following steps:

1. Open C:\Windows\System32\inetsrv\config\applicationhost.config file.

2. Locate to the node configuration - system.webServer - security - requestFiltering - requestLimits. the requestLimits may not existing in this file. Please add this node manually if it is not existing.

3. Set the maxAllowedContentLength proterty and assign the value to this property.

the sample xml is:

<configuration>
        <system.webServer>
            <security>
                <requestFiltering>
                    <requestLimits maxAllowedContentLength="100000000"/>
                </requestFiltering>
            </security>
        </system.webServer>
</configuration>
Please keep in mind that this issue is not a SharePoint issue. It is a issue about IIS7. It will occurred on not only SharePoint environment.