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

推荐订阅源

V2EX - 技术
V2EX - 技术
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Latest news
Latest news
T
The Exploit Database - CXSecurity.com
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
L
Lohrmann on Cybersecurity
aimingoo的专栏
aimingoo的专栏
B
Blog
T
Threat Research - Cisco Blogs
罗磊的独立博客
Application and Cybersecurity Blog
Application and Cybersecurity Blog
P
Proofpoint News Feed
P
Palo Alto Networks Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
博客园 - 司徒正美
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
T
Tor Project blog
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
Recorded Future
Recorded Future
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
B
Blog RSS Feed
Scott Helme
Scott Helme
P
Proofpoint News Feed
V
Vulnerabilities – Threatpost
A
Arctic Wolf
Help Net Security
Help Net Security
L
LINUX DO - 最新话题
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Vercel News
Vercel News
AWS News Blog
AWS News Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
S
Schneier on Security
Hacker News: Ask HN
Hacker News: Ask HN
N
Netflix TechBlog - Medium
L
LangChain Blog
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
M
MIT News - Artificial intelligence
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
W
WeLiveSecurity

博客园 - 笑萧亦然

KingdeeK3-修改单据邮件发送的自定义字段 微软在GitHub上开放源代码 【转】GitHub入门详细讲解 asp.net 导出excel 中文乱码解决方法 (转) C#自动切换Windows窗口程序,如何才能调出主窗口? 系统颜色对照表 showModalDialog后如何刷新父页面 delegate Demo (一个关于System.Timers.Timer的Demo) 常用SQL关于表的操作 SQL 数据库常用的系统存储过程解析 JAVA md5把我气到疯的代码,天哪,神呀,我的C# 啊。 根据经纬度坐标计算两点间几何距离 - 椰子树下 - CSDN博客 获取库中的所有字段的描述/获取某个表中所有字段方法 多个CSS风格共用同一(背景)图片_那一片天_百度空间 学习总结之三(SQL SERVER游标CURSOR的使用) SQL Server 如何锁一个表的某一行 - MS-SQL Server / 基础类 SQL中的系统变量一览 简单的弹出层窗口应用(DIV+JS) - 笑萧亦然 - 博客园 sql中左侧不够自动补0的写法,优!
System.Web.HttpException 与 HTTP Error 404.13 - Not Found问题解决说明
笑萧亦然 · 2012-02-03 · via 博客园 - 笑萧亦然

关于服务器(WINDOWS 2008)上出现附件上传出现大于20M报超时或出现HTTP Error 404.13 - Not Found的问题说明:

在站点文件web.config文件中找到如下描述中的节点配置:

一、配置站点的全部页面的默认超时时间和上载文件大小

executionTimeout表示的是关闭前允许发生的上载秒数300毫秒=0.3秒,maxRequestLength表示的是上载到服务器的文件大小51200Kb=50M

<configuration>

<system.web>

 <httpRuntime executionTimeout="300" maxRequestLength="51200" />

</system.web>

</configuration>

二、配置单个文件的默认超时时间和上载文件大小

<configuration>

<location path="KMAddFile.aspx">

    <system.web>

      <httpRuntime executionTimeout="9000" maxRequestLength="204800" />

    </system.web>

 </location>

</configuration>

则表示说KMAddFile页面 按对应的规则允许的上载秒数9秒,上载的文件大小最大200M

三、配置站点的最大上载到服务器的文件大小 maxAllowedContentLength

 表示的是最大上载到服务器的文件大小204800KB=200M

</system.webServer>

    <security>

      <requestFiltering>

        <requestLimits maxQueryString="4096" maxAllowedContentLength="204800">

        </requestLimits>

      </requestFiltering>

    </security>

 </system.webServer>

出现问题说明:

1. 公文页面的附件大于20M出现  System.Web.HttpException: 请求已超时。出现此问题需修改第一点中的executionTimeout改大即可

2. 文管中心上传大于30M的文件出现404.13的现象,出现此问题需修改第三点中的maxAllowedContentLength的大小即可.