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.
events not working?
  • I just bought the Uploadify Five script, and everything seems to be working except any kind of event. I tried all of them, and nothing happens. This is just a sample code so you can tell me if i am dooing something wrong.


    $('#file_upload').uploadifive({
    'auto' : true,
    'dnd' : true,
    'queueID' : 'queue',
    'uploadScript' : 'uploadifive.php',
    'onQueueComplete' : function(uploads) { console.log("Queue done uploading!"); },
    'onAddItemQueue' : function(file) { console.log('A file just got added!'); }
    });
  • It looks like there is a bug in the code regarding the onQueueComplete. I'll post an update tonight.

    Or you can add the following below line 710 of the uploadifive js file:

    if ($('#' + settings.queueID).find('.uploadifive-queue-item').not('.error, .complete').size() == 0) {
    $data.queueComplete();
    }


    As for the onAddQueueItem, you have the event misspelled as onAddItemQueue.
  • OK the fix for onQueueComplete worked. And i am sorry for the onAddQueueItem i don't know where i read that it goes like that. That works as well. Thank you for a fast replay. When you push future code how will we get updates, via email or?
  • I'll need to figure that out. I'm thinking email is the best way, but I don't want to mess with anyone's privacy. So it may be some other way, but you will always get updates free.
  • Ok, that is very cool. I really live the HTML5 version, it feels more light and native than the flash one. Thx so much.
  • I just installed UploadiFive 1.0.4 and set queueSizeLimit : 3 ... when i upload 2 images at once it fire onQueueComplete... but when i upload 3 at a time onQueueComplete never fires
  • i got this error "UPLOAD_LIMIT_EXCEEDED"