This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
Cannot upload files over 1.9 Gigabytes
  • Hello,
    I am trying to implement uploadify to upload files up to 10 GB. My server is running Ubuntu Server 64-bit, so my PHP_INT_MAX is 9223372036854775807 (((2^64)/2) - 1), since PHP uses signed integers. I guess this means I can upload files up to 8,589,934,592 GB in size with my Apache/PHP setup since Apache is only limited by an integer to specify upload_max_filesize and post_max_size.

    Now, when I upload files with uploadify in this setup,
    I can only successfully transfer files up to 2147483647 ( ((2^32)/2) - 1 ) bytes large, roughly 1.9 GB. This is where I am stuck. I think I may be limited by the maximum integer size in javascript which appears to me as a 32-bit signed integer.

    So the question is can I work around this and implement uploadify to transfer files up to 10 GB in size, or am I only limited to 1.9 GB?

    Thanks!
  • Have you tried uploading them only by html form?
    I don't think javascript is problem.
  • Yes, thats how I was originally uploading the files in the first place. I am using uploadify because I need to know the progress of the uploads. Uploadify only works for files up to 1.9 GB. With anything larger, uploadify shows the upload progress bar zip to 100%, yet there is no actual file upload taking place. What can be the issue here?
  • In the uploadify javascript configuration, I set the file size limit to 10737418240 bytes.
  • Did you ever solve this? I think I'm having the same problem :/