点网核武器上传文件

发布于 2024-10-02 05:31:11 字数 448 浏览 5 评论 0原文

我正在为客户开发一个 dot net nuke 网站,他们想要上传大约 60mbs 的文件。我已经更改了 web.config 文件,允许文件大小达到 65mbs,只是为了有回旋余地。

httpRuntime useFullyQualifiedRedirectUrl=" true" maxRequestLength="66560" requestLengthDiskThreshold="66560"executionTimeout="1080000" //>

这是 web.config 文件中的代码。我个人尝试过大小​​从 40 mbs - 60 mbs 不等的 mp3 文件,但没有成功。如果这有帮助,该模块只会上传 28mbs 或更少的文件。

即使它仅设置为 3,连接也不会达到我指定的 18 分钟超时。分钟超时我也遇到同样的错误。此外,上传文件时,它会达到 86%,然后在再次达到 86% 时重新启动,即出现错误。

I"m working on a dot net nuke site for a client, they are wanting to upload files of about 60mbs. I have changed the web.config file to allow files up to 65 mbs in size just for wiggle room.

httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="66560" requestLengthDiskThreshold="66560" executionTimeout="1080000" />

this is the code in the web.config file. I have personally tried mp3 files ranging from 40 mbs - 60 mbs in size to no luck. The module will only upload files of 28mbs or less. We are using the Live Content module if this helps.

The connection is getting reset. its not even getting to the 18 minute timeout i have given it, even if it is only set to 3 minute timeout i get same error. Also when uploading the file it will get to 86% then restart when it gets to 86% again is when it gets the error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情痴 2024-10-09 05:31:11
<system.webServer>
<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="2000000000" />
  </requestFiltering>
</security>

实际上修复了它,dot net nuke 设置为上传最大 8mbs 的文件,iis 设置为仅允许上传最大 30mbs 的文件。将此代码添加到 web.config 文件将允许上传大于 200mbs 的文件。使用我在问题中提供的代码将修改 dnn 的上传,但这将修改 iis.

<system.webServer>
<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="2000000000" />
  </requestFiltering>
</security>

actually fixed it, the dot net nuke is set to upload files up to 8mbs, the iis is set to only allow files up to 30mbs. adding this code to the web.config file will allow files larger than 200mbs to be uploaded. using the code i provided in my question will modify the dnn's upload but this will modify the iis.

余生共白头 2024-10-09 05:31:11

您可能还需要增加 AspMaxRequestEntityAllowed 的值,请参阅:http://www.banmanpro.com/ support2/File_Upload_limits.asp

You may also have to increase the value of AspMaxRequestEntityAllowed, see: http://www.banmanpro.com/support2/File_Upload_limits.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文