0

我正在尝试在实时网站上上传视频和音频文件。示例:domain.com/admin/fileupload.aspx 这是一个 url。我在 web.config 中使用此代码:

<httpRuntime executionTimeout="1000" maxRequestLength="1048576" />

使用此 web.config 设置,我没有得到错误连接在运行时重置错误,该错误在 localhost:port/domainfolder/admin/fileupload.aspx 上运行得很好。但这不适用于实时域。我也在 live web.confg 设置中尝试这个

<httpRuntime maxRequestLength="2000000000" executionTimeout="999999"/>

但这不起作用并且出现相同的错误。请帮我解决这个问题。我想在网站上上传大文件,视频和音频文件大小约为 60MB 到 5GB,请告诉我如何解决此错误连接已在实时网站上重置。谢谢

4

1 回答 1

0

如果您使用的是 IIS7,那么 IIS 中有 30MB 的内置限制(请求过滤功能)您可以通过运行以下命令来更改它

appcmd set config "My Site/MyApp" -section:requestFiltering -requestLimits.maxAllowedContentLength:1073741824 -commitpath:apphost

(设置为约 1GB)

http://technet.microsoft.com/en-us/library/cc754791(v=ws.10).aspx

于 2013-07-12T13:16:51.383 回答