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.
  • hi,
    i am using jquery.upload.modify.js for uploading multiple files using flash in php. i am getting IO Error (2083 error) wihle uploading the files. please give the details explanation, why i am getting this error.

    thank you.
  • Since it only shows up the latest error, you need to add a custom event handler to see the more specific error.
    Add this in your calling Javascript (where you set all settings for uploadify):

    onError: function (a, b, c, d) {
    if (d.status == 404)
    alert('Could not find upload script. Use a path relativ$
    else if (d.type === "HTTP")
    alert('error '+d.type+": "+d.status);
    else if (d.type ==="File Size")
    alert(c.name+' '+d.type+' Limit: '+Math.round(d.sizeLim$
    else
    alert('error '+d.type+": "+d.text);
    },

    and you will see a more specific error.

    HTH
  • NfuidS said:
    Since it only shows up the latest error, you need to add a custom event handler to see the more specific error.
    Add this in your calling Javascript (where you set all settings for uploadify):

    onError: function (a, b, c, d) {
    if (d.status == 404)
    alert('Could not find upload script. Use a path relativ$
    else if (d.type === "HTTP")
    alert('error '+d.type+": "+d.status);
    else if (d.type ==="File Size")
    alert(c.name+' '+d.type+' Limit: '+Math.round(d.sizeLim$
    else
    alert('error '+d.type+": "+d.text);
    },

    and you will see a more specific error.

    HTH


    hi,
    thank you for your replay, i placed this code and i am getting the error ''error HTTP: 406"
    error IO: Error #2038"

    could you please tell me why i am getting the error, and also please tell me the solution.
  • I had this same problem recently. It was because I was using SSL on a subdomain that I didn't have an SSL cert for. In other words, make sure you have a real valid SSL cert, or make sure you aren't using SSL.
  • hi,
    thank you for your reply, we dont have real valid SSL certificate, for that reason we are getting the error?, if any other solution please provide.
  • hi,
    thank you for your reply, we dont have real valid SSL certificate, for that reason we are getting the error?, if any other solution please provide.