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.
Compatibility problem with Yahoo TabView
  • Hi,
    I use Firefox 3.5 and uploadify v2.1.0.
    document.getElementById(jQuery(this).attr("id") + "Uploader").updateSettings is not a function
    was reported when $('#uploadify').uploadifySettings('folder') is executed with yahoo tabview loaded. Please refer to the attached code:
    <head>
    <script type=\"text/javascript\">
    if (window.attachEvent)
    window.attachEvent('onload', init);
    else if (window.addEventListener)
    window.addEventListener('load', init, false);
    else
    document.addEventListener('load', init, false);

    function init(){
    $(\"#uploadify\").uploadify({
    'uploader' : 'uploadify.swf',
    'script' : 'uploadify.php',
    'checkScript' : 'check.php',
    'cancelImg' : 'images/cancel.png',
    'folder' : 'uploads',
    'queueID' : 'fileQueue',
    'auto' : true,
    'multi' : true
    });
    setTimeout(upfold,3000);
    tabView = new YAHOO.widget.TabView('tabmain'); //Comment out this line to get rid of the error
    }

    function upfold(){
    alert(\"Before - \"+$('#uploadify').uploadifySettings('folder'));
    $('#uploadify').uploadifySettings('folder','newuploads');
    alert(\"After - \"+$('#uploadify').uploadifySettings('folder'));

    }
    </script>
    </head>
    <body>
    <div id=\"tabmain\" class=\"yui-navset\">
    <ul class=\"yui-nav\">
    <li class=\"selected\"><a href=\"#tab1\">Tab 1</a></li>
    <li><a href=\"#tab2\">Tab 2</a></li>
    </ul>
    <div class=\"yui-content\">
    <div id=\"tab1\">
    Testing
    </div>
    <div id=\"tab2\">
    <input type=\"file\" name=\"uploadify\" id=\"uploadify\" />
    <div id=\"fileQueue\"></div>
    <p><a href=\"javascript:jQuery('#uploadify').uploadifyClearQueue()\">Cancel All Uploads</a></p>
    </div>
    </div>
    </div>
    </body>