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

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare Blog

博客园 - 焰凌

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.