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.
Error in chrome
  • I am trying to put uploadify inside a jqueryui modal dialog and when I do I get the following error in chrome:
    Error in event handler for 'undefined': Cannot set property 'innerText' of null TypeError: Cannot set property 'innerText' of null
    at process_response (chrome-extension://lllhkijapbmlekoldcoohglpihmcjdgj/hover-box.js:40:44)
    at chromeHidden.Port.sendMessageImpl (miscellaneous_bindings:283:9)
    at chrome.Event.dispatch (event_bindings:237:41)
    at Object.chromeHidden.Port.dispatchOnMessage (miscellaneous_bindings:250:22) event_bindings:241
    chrome.Event.dispatch

    <!DOCTYPE html>
    <html>
    <head>
    <link rel="stylesheet" type="text/css" media="screen" href="css/ui-lightness/jquery-ui-1.8.22.custom.css" />
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min.js"></script>
    <script type="text/javascript" src="js/jquery.uploadify-3.1.js"></script>
    </head>
    <body>
    <script type="text/javascript">
    manualLightboxContent = function ()
    {
    $("#dialogContent").html($('#module_wrapper').html());
    $("#dialogContent").dialog( { 'modal': true } );
    }
    </script>
    <a href="#" onclick="manualLightboxContent();">Open</a>
    <div id="dialogContent" style="display:none;"></div>

    <div id="module_wrapper" style="display:none;">
    <script type="text/javascript">
    $().ready(function() {
    $('#uploadFile').uploadify({
    'swf' : 'uploadify.swf',
    'fileObjName' : "uploadFile"
    });
    });
    </script>
    <input id="uploadFile" type="file" name="uploadFile" />
    </div>
    </body>

    </html>
  • This appears to be relevant: http://chrome.blogspot.com/ (FML)