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.
How to submit BUG/Issue correction?
  • I found a little pitfall at version 2.1.4 at uploadifySettings:function(settingName, settingValue, resetObject).

    Inside the iteration to build the returnObj, a .split("=") parses a policy value to Amazon S3 wrong, since it ends with "=="

    I change the code to:

    I made another code here, :-) but to be easy to follow
    var idx = returnSplit[i].indexOf('=');
    var fld = returnSplit[i].substring(0,idx);
    var vl = returnSplit[i].substring(idx+1);
    returnObj[fld] = vl;

  • The user and all related content has been deleted.