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.
Bug Using Jquery 1.8.0 - $.tmpl
  • Hello,

    I correct one bug using jquery 1.8

    In this version, it don't use more function $.tmpl()
    "The jQuery team has decided not to take this plugin past beta. It is no longer being actively developed or maintained."

    In line 656 (jquery.uploadify.js), remove:


    if (settings.itemTemplate == false) {
    $itemTemplate = '<div id="${fileID}" class="uploadify-queue-item">\
    <div class="cancel">\
    <a href="javascript:$(\'#${instanceID}\').uploadify(\'cancel\', \'${fileID}\')">X</a>\
    </div>\
    <span class="fileName">${fileName} (${fileSize})</span><span class="data"></span>\
    <div class="uploadify-progress">\
    <div class="uploadify-progress-bar"><!--Progress Bar--></div>\
    </div>\
    </div>';
    } else {
    $itemTemplate = settings.itemTemplate;
    }


    In line 675, replace:
    $('#' + settings.queueID).append($.tmpl($itemTemplate, itemData));

    for


    $('#' + settings.queueID).append('<div id="'+itemData.fileID+'" class="uploadify-queue-item">\
    <div class="cancel">\
    <a href="javascript:$(\'#'+itemData.instanceID+'\').uploadify(\'cancel\', \''+itemData.fileID+'\')">X</a>\
    </div>\
    <span class="fileName">'+itemData.fileName+' ('+itemData.fileSize+')</span><span class="data"></span>\
    <div class="uploadify-progress">\
    <div class="uploadify-progress-bar"><!--Progress Bar--></div>\
    </div>\
    </div>');


    But now, i dont use this option itemTemplate

    Sorry my horrible english.