Not able to upload files of size more than 1gb

Last post 08-30-2011, 8:07 AM by stephen_albert. 2 replies.
Sort Posts: Previous Next
  •  08-30-2011, 6:05 AM 69868

    Not able to upload files of size more than 1gb

    Hi,
     
    When i try to upload files that are more that 1gb of size i get the following message:
     
    File size (1367 MB) is too large. The maximum file size allowed is set to: 1024 MB.
     
    I tried increasing the MaxSizeKB to 1.5 gb but still get this message. The current version of ajax uploader i am using is 3.0.0.0. Could you please help me in solving this issue.
     
     
    Kind regards,
     
    Stephen Albert
  •  08-30-2011, 7:38 AM 69874 in reply to 69868

    Re: Not able to upload files of size more than 1gb

    Hi stephen_albert,
     
    Please try the example below, does it work for you?
     
    <%@ Page Language="C#" Title="Customize the queue UI" %>

    <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
    </head>
    <body>
        <form id="Form1" runat="server">
            <div>
                <CuteWebUI:UploadAttachments runat="server" ID="UploadAttachments1">
                    <ValidateOption MaxSizeKB="2000000" />
                </CuteWebUI:UploadAttachments>
            </div>
        </form>
    </body>
    </html>
     
    Regards,
     
    Ken
  •  08-30-2011, 8:07 AM 69877 in reply to 69874

    Re: Not able to upload files of size more than 1gb

    Hi Ken,
    No this the same code I already have but stillnot working: 
    <CuteWebUI:Uploader runat="server" ID="Uploader1" OnFileUploaded="Uploader1_FileUploaded" InsertText="Select Files and Upload" MultipleFilesUpload="true">
          <InsertButtonStyle CssClass="btnBlue" Width="140px" />
          <CancelButtonStyle CssClass="btnBlue" />
          <VALIDATEOPTION AllowedFileExtensions="*.*" MaxSizeKB="2000000" />
    </CuteWebUI:Uploader>
     
    Regards,
     
    Stephen Albert
View as RSS news feed in XML