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 remove files from server
  • I can upload files and the uploaded files are visible with a nice cancel cross. When you press the cancel cross, uploadifyCancel starts and removes the file from the list. I also want to remove the file from the server when somebody is pressing the cancel cross.

    How do I do that?
    Can I store the unique ID which uploadify uses at the server?
  • I added the line
    $("#"+ jQuery(this).attr('id')).uploadifySettings('scriptData',{'uploadifyId': ID})
    after line 111 in jquery.uploadify.v2.1.4.js. Before the line
    if (event.data.action(event, ID, fileObj) !== false) {

    Now the script will send the ID as a variable to the server. So we can store it with the file and delete it when clicked on the cancel icon.

    I am still looking for a way to do this without changing the uploadify source code.
  • Hello webinfo! How can i do this in v3? Thanks! :)