Hello,
If I upload a file with size more than around 300Mo, I get an OutOfMemory expection.
It's not a large file restriction becausemy web.config params allows maxRequestLength="680000" requestLengthDiskThreshold="680000", so untill 680Mo.
It's possible my 2GB of memory are insufficient, but if I test a file of 600Mo with simple asp.net project, no hosted by DNN interface, the upload is correct. So, I don't think DNN use more than 300Mo to run (600Mo - 300Mo = 300Mo).
The exception occured in Library\Components\Exceptions\Exception.vb in ProcessPageLoadException function.
You can test this error with this code in a DNN module or in a simple asp.net project :
--HTML
<
asp:FileUpload ID="FiUpload" runat="server" />asp:LinkButton ID="lkAddFile" runat="server" CssClass="button">go</asp:LinkButton>
-- VB
Protected Sub lkAddFile_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lkAddFile.ClickEnd Sub
Thank you for your feedback.
<