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.
Problem in IE
  • Hi All

    I notice that uploadify works on IE and Mozilla well...
    but if I take all uploadify html in a div and open this div in dialog and then its not working
    if am not using jquery dialog then its working ok.

    $(\"#uploadify\").uploadify({
    'uploader' : 'scripts/uploadify.swf',
    'script' : 'scripts/upload_product.php',
    'cancelImg' : 'images/cancel.png',
    'folder' : 'ok',
    'queueID' : 'fileQueue',
    'auto' : false,
    'fileDesc' : 'jksdhjsdf dsjdsfbfd s',
    'fileExt' : '*.jpg;*.png;*.jpeg;*.gif',
    'multi' : false,
    });


    Code on Click Action

        $(\"#new_prod_link\").click(function (){
    $('#dialog_div_new_product').dialog({
    autoOpen: false,
    modal: true,
    resizable: false,
    width : 600,
    buttons: {
    \"Cancel\": function() {
    onclose_new_prod();
    },
    \"Save\": function() {
    alert(\"Save\");
    $('#uploadify').uploadifySettings('folder','2001');
    $('#uploadify').uploadifyUpload();
    }
    }
    });
    $('#dialog_div_new_product').dialog('open');
    });



    If I call uploadifyUpload() out side the dialog then it works ok.
    otherwise it give error

    Message: Object doesn't support this property or method
    Line: 26
    Char: 6033
    Code: 0
    URI: http://192.168.0.1/~/jquery.uploadify.v2.1.0.min.js



    Please help regard this

    Thanks
    Amit Battan