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.
Chrome> not open dialog
  • Hi,

    when I press browse button on Chrome 5 (last version) nothing happens (Firefox it is ok),
    anyone has a idea why ? (console display no error message)

    Thanks for help :roll:

    here my code :


    $(document).ready(function(){

    $('#fileInput').uploadify({
    'auto' : true,
    'multi' : true,
    'folder' : '/plugins/_gallery/_tmp',
    'script' : 'index.php',
    'scriptData' : {'mod': '_gallery', 'do':'add', '_action':'m_upload'},
    'fileExt' : '*.jpg; *.jpeg; *.gif; *.png',
    'fileDesc' : 'Images (jpg, gif, png)',
    'queueID' : 'fileQueue',
    'onComplete' : function(event, queueID, fileObj, response, data){

    console.log(fileObj.filePath+' response: '+response);

    }
    });

    });