Re: Error 2038 on large upload

  •  06-13-2011, 2:58 PM

    Re: Error 2038 on large upload

    Dear greggs,
     
    PHP File Uploader is designed to work with up to 2GB files. The reason for the limit is simple - current browsers does not support upload of bigger files than 2GB over internet and IIS also accepts only 2GB files.
     
    Please refer to the following code and set the MaxSizeKB to 2G:
     
    <?php
       $uploader=new PhpUploader();
       
       $uploader->MultipleFilesUpload=true;
       $uploader->InsertText="Upload (Max 2G)";
       
       $uploader->MaxSizeKB=2048000; 
       
       $uploader->Render();
      ?> 
     
    Thanks for asking
View Complete Thread