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.
fileType boolean test seems not to work
  • An issue I encountered with the fileType option. If you pass it a JSON array and try to upload a disallowed file type, the JS reported the following error: "Uncaught ReferenceError: isValidFileType is not defined" on line 289 of jquery.uploadifive-v1.0.js and would not then show the FORBIDDEN_FILE_TYPE error message to the user.

    I've log() the isValidFileType boolean value at each line and for some reason its not working. I did get it working swapping in an integer based test to (jquery.uploadifive-v1.0.js) at line 283:
    var v = 0;
    for (var n = 0; n < settings.fileType.length; n++) {
    if (file.type.indexOf(settings.fileType[n]) > -1) {
    v += 1;
    }
    }
    if (v < 1) {
    $data.error('FORBIDDEN_FILE_TYPE', file);
    }

    Further discussion at: http://www.uploadify.com/forum/#/discussion/8232/upload-five-html-5-file-type-filter-capability