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.
Starting transfer without auto: true
  • Hello, nothing happened after selecting a file unless I specified auto: true, in which case a file would begin uploading as soon as it was selected. Is there no start button that appears if auto is not set to true? Are we supposed to supply it ourselves? I have not been able to get files to complete uploading yet (http://www.uploadify.com/forum/viewtopic.php?f=7&t=788#p2070) but once I figure that out I would like to provide users a start button rather than having a transfer begin automatically so that it works as users expect. Thank you for any help.
  • Yes you have to add the button coding if you have it manually upload. Here is an example of an Upload and Clear button:
    <a href=\\"javascript:$('#fileInput').fileUploadStart();\\">Upload Files</a>
    <a href=\\"javascript:$('#fileInput').fileUploadClearQueue();\\">Clear Queue</a>
  • Thanks a lot, computerkidt. Sounds like that will do the trick. I will try it when I get home.