SoFunction
Updated on 2025-04-02

WebUploader uploads large video files related configuration

WebUploader uploads large video files related configuration

Updated: January 20, 2017 14:40:00 Author: Yizhi Duxiu_Wante Fei
This article mainly introduces the configuration related to webUploader uploading large video files. It has certain reference value, let's take a look with the editor below

When the webuploader uploads large files, it must be configured, otherwise the request timeout will be requested when requesting the background handler. 404 appears!

<>
<httpRuntime maxRequestLength="2040000" useFullyQualifiedRedirectUrl="true" executionTimeout="6000" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" enableVersionHeader="true" />
 </>
<>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="3000000000" />
</requestFiltering>
</security>
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
</staticContent>
</>

The above is all the content of this article. I hope that the content of this article will help you study or work. I also hope to support me more!

Related Articles

  • Core MVC Dependency Injection View and Controller

    This article focuses on introducing Core MVC's dependency injection View Related information about the Dependency Injection Controller with Core MVC. If you need it, please refer to the specific content of the following article.
    2021-09-09
  • Introduction to C# and advanced programming of C# polymorphism

    Encapsulation, inheritance, and polymorphism, the three major features of object-oriented. The first two items are relatively easy to understand, but understanding polymorphism, especially in-depth understanding, may be difficult for beginners.
    2012-11-11
  • Crystal easy table calls C# WebService, and returns application analysis of data collection

    This article introduces the application analysis of Crystal Easy Table calls C#'s WebService and returns data collection. If you need it, please refer to it
    2013-04-04
  • Design windows phone page theme

    This article mainly introduces the theme of designing the Windows Phone page. Friends who need it can refer to it.
    2015-07-07
  • .Net realizes image cropping, image scaling and image watermarking detailed explanation

    This article mainly introduces the detailed explanation of the .Net image cropping, image scaling and image watermark implementation examples. Friends in need can refer to it for reference. I hope it can be helpful. I wish you more progress and get promoted as soon as possible to get a salary increase as soon as possible.
    2022-09-09
  • Introduction to PeriodTimer in .Net 6

    This article mainly introduces the PeriodTimer in .Net 6, and a new asynchronous timer PeroidTimer has been added to .net 6. Compared with the callback of ordinary Timer, its model is simpler. Let’s take a look at the details below.
    2022-01-01
  • .Net Core HttpClient handles response compression details

    As a rising star, .Net Core directly straightened HttpClient and improved HttpClientFactory on this basis. Next, let’s explore the mechanism of using HttpClient to handle response compression in .Net Core. , If you need it, please refer to the specific content of the following article
    2021-09-09
  • Example of Core AD domain login process

    This article mainly introduces examples of the Core AD domain login process. Friends in need can refer to it for reference. I hope it can be helpful. I wish you more progress and get better as soon as possible to get a salary increase.
    2022-04-04
  • .NET 6 Upcoming New Features Implicit Namespace References

    Now we still need to manually add namespace references. In future versions, we may not need to manually add namespace references. This article will introduce the upcoming new features of .NET 6 - implicit namespace references. Friends who need it can refer to the following article content
    2021-09-09
  • .Net Core's Use of AutoFac

    This article briefly introduces the basic use of AutoFac and its application in asp .net core. The article explains the relevant knowledge through code in detail, which is very helpful for everyone's study or work. Interested friends can refer to this article
    2021-09-09

Latest Comments