This is a migrated thread and some comments may be shown as answers.

2GB files and up

1 Answer 47 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Kris
Top achievements
Rank 1
Kris asked on 11 May 2012, 01:48 PM
Hi,

I have radupload setup and working fine on iis7.
I have all the maxfilesize , requestfiltering and so on setup to their maximum values.
I am using your sample java script to determine the file size and cancel if the file is over 1GB is size:

 
function checkUploadedFilesSize(progressArea, args) { 
          if (!progressArea.confirmed &&
  args.get_progressData().RadUpload.RequestSize > 1073741829) {
              document.getElementById('Label1').innerHTML = "max file size exceeded";
                  progressArea.cancelRequest();
               
          }
      }

its all working fine for files up to about 2GB is size, the java script catcthesh them and cancels them, however for files over 2GB in size nothing happens, javascript never fires,browser just load until file not found is displayed.
It this something that can be fixed ?

Also the above javascript doesnt seem to be working in Google Chrome browser for whatever reason..? Any ideas?

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 14 May 2012, 02:11 PM
Hi Kris,

This behavior is expected because "you can upload files with a combined size of up to 2GB" as it is explained in our Uploading Large Files documentation article.
 
Hope this will be helpful.

Kind regards,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Upload (Obsolete)
Asked by
Kris
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or