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

推荐订阅源

Y
Y Combinator Blog
D
Docker
有赞技术团队
有赞技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
爱范儿
爱范儿
H
Help Net Security
美团技术团队
MyScale Blog
MyScale Blog
B
Blog RSS Feed
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
G
Google Developers Blog
月光博客
月光博客
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs

博客园 - 焰凌

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.