在网页上上传大文件?

发布于 2024-10-17 08:59:43 字数 566 浏览 0 评论 0原文

我们使用 MojoPortal 访问网站,但使用上传模块上传 100 MB 左右的文件时遇到一些问题。 (请注意,这可能与 MojoPortal 无关,而是与 ASP.NET 和 IIS 有关)

MojoPortal 设置为使用常规文件上传(不是 Neat Uploader),并且能够上传大文件文件我们设置了以下内容:

<httpRuntime maxRequestLength="2097151" executionTimeout="18000" requestValidationMode="2.0"/>

和:

<compilation debug="false" defaultLanguage="C#" targetFramework="4.0">

问题是上传将在几分钟后取消(中止)。

我是否需要设置任何其他值才能实现此目的?据我所知,MojoPortal 本身不应该有任何设置,所以它是常规的 ASP.NET 4.0。

此致

We use the MojoPortal to a website and have some problems to upload files that is around 100 MB with the upload module. (Pleas note that this has probably nothing to do with MojoPortal but with the ASP.NET and the IIS)

The MojoPortal is set to use regular file Upload(not Neat Uploader) and to be able to upload big files we have set the following :

<httpRuntime maxRequestLength="2097151" executionTimeout="18000" requestValidationMode="2.0"/>

And :

<compilation debug="false" defaultLanguage="C#" targetFramework="4.0">

The problem is that the upload will cacel after a couple of minuts (Aborted).

Is there any other values that I need to set to make this possible? The MojoPortal itself should not have any settings for this as far as I know so its regular ASP.NET 4.0.

BestRegards

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

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

发布评论

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

评论(1

坐在坟头思考人生 2024-10-24 08:59:43

我假设您在 IIS 7 或更高版本下运行它。
在这种情况下,您可能还想在 web.config 中更新此属性:

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

I assume you're running this under IIS 7 or higher.
In this case you might want to update this property as well, in your web.config:

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