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.
Double http request
  • Hello. I noticed some strange thing. After uploadify.swf is downloaded there is strange http request to the containing page url. For example: request to http://www.uploadify.com/documentation/uploadify/swf/ generates two requests to this page in log. Is this bug? I have some problems because of this double request. Thank you for reading this.

    I used uploadify 3.1, JQuery 1.7.2
  • Hello, I solve the problem by replacing SWFUpload.completeURL function with

    SWFUpload.completeURL=function(a){
    return a
    }


    Everything work fine, but I afraid it can has terrible effects.
  • This certainly appears to be a bug and an incredibly obnoxious one!
  • I am also seeing this. This issue is with SWFUpload.completeURL as Ruin states, specifically when it is called with button_image_url. This value is never being set but the SWFUpload object doesn't check if it is set. The completeURL method returns the URL of the current page which is then called by the flash causing the extra http requests. The solution Ruin provides does work and will only cause issues if a URL passed to it is invalid.