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.
Multiple Uploadifive in one page is not working
  • Hello is there a workaround on using multiple uploadifive buttons in one page?

    here is my code which is not working:

    HTML:

    <input type="file" id="file_upload_1">
    <input type="file" id="file_upload_2">
    <input type="file" id="file_upload_2">

    JS:

    $(function() {
    $('#file_upload_1').uploadifive({
    'auto' : true,
    'method' : 'post',
    'queueID' : 'queue',
    'fileType' : ['text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel','application/force-download'],
    'uploadScript' : myurl',
    'onUploadComplete' : function(file, data) {
    console.log(data);
    }
    });

    $('#file_upload_2').uploadifive({
    'auto' : true,
    'method' : 'post',
    'queueID' : 'queue',
    'fileType' : ['text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel','application/force-download'],
    'uploadScript' : myurl',
    'onUploadComplete' : function(file, data) {
    console.log(data);
    }
    });

    $('#file_upload_3').uploadifive({
    'auto' : true,
    'method' : 'post',
    'queueID' : 'queue',
    'fileType' : ['text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel','application/force-download'],
    'uploadScript' : myurl',
    'onUploadComplete' : function(file, data) {
    console.log(data);
    }
    });
    });

  • Set different 'queueID' for each or don't set 'queueID' at all.