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.
using own queue item template
  • hi there,

    rather than using filenames and uploadifive's queue-item template, i want to create my own id's and also use my own queue-item template. i've managed to get this to work fairly well, except that the upload never actually occurs (so onUpload doesn't trigger).

    'onAddQueueItem' : function(file) {
    var id = create_my_id();
    create_my_template(id);
    this.data('uploadifive').settings.formData = {
    id : id
    };
    },


    any thoughts as to why?

    thanks in advance, this appears to be a great little plug-in! if i'm able to get it to work the way i need it to work, i will purchase the commercial license.

    Hermann
  • One follow-up question: Is there a way to locally display a thumbnail of the file as it's being uploaded or even while on queue? (assuming it's an image).
  • Another followup: Forgot to mention that I think the reason upload doesn't begin is because I do have this:

    'overrideEvents' : ['onAddQueueItem']

    I was able to get it to work if I get rid of the above, but edit jquery.uploadifive-v1.0.js as follows:

    $data.queueItem = $('');

    That's a bit too kludgy for my taste though. Any idea what's going on?
  • Another followup: Is there a way to access the above id in other events such as onProgress?

    I tried this:
    var id = this.data('uploadifive').settings.formData.id;

    which works ok when doing one upload, but when doing more than one upload simultaneously, only the first uploaded file gets updated.