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.
Firebug error with 2.0.2 minified
  • I installed 2.0.2 this morning. I'm seeing the following error in the firebug console when loading my page. Uploadify does appear to work though.

    document.getElementById(a(this).attr("id") + "Uploader").updateSettings is not a function
    http://devsa.arm.gov/~perkins/ops/statu ... 0.2.min.js
    Line 26

    Firefox 3.0.12
    Windows XP
    jQuery 1.2.6

    Trying this with with jquery.uploadify.v2.0.2.js (not minified) reveals

    document.getElementById(jQuery(this).attr("id") + "Uploader").updateSettings is not a function
    http://devsa.arm.gov/~perkins/ops/statu ... .v2.0.2.js
    Line 224
  • This error indicates there is something on your page stopping the js or swf from completely loading. the updateSettings Function is within flash.

    If you comment out that line you'll find it will move onto the next flash function call.
  • You are correct. This error appears when the page loads.

    Firebug stacktrace helped me isolate the problem. Based on your response to another question I asked, I recently added a function that I can call to check the queueSize. By commenting out the line shown the error goes away. I suspect this is firing before the the js or swf is completely loaded.

    /**
    * Returns the number of files in the uploadQueue.
    */
    var uploadFormQueueSize = function() {
    // return $('#file_upload').uploadifySettings('queueSize');
    return 1; // while debugging load error problem
    }
  • Duplicate deleted
  • I've confirmed that the problem is self inflicted.
    [code=php]
    $(document).ready(function(){

       ... a whole bunch of stuff happens ...

       $('#file_upload').uploadify({
                'uploader':'scripts/uploadify.swf',
                'script':'uploadify.php',
                'cancelImg':'img/cancel.png',
                'folder':'/uploads',
                'buttonImg':'img/browse-files.png',
                'wmode':'transparent',
                'width':150,
                'sizeLimit': uploadSizeLimit,
                'onSelect': uploadOnSelect,
                'onCancel': uploadOnCancel,
                'onClearQueue': uploadOnClearQueue,
                'onError': uploadOnError,
                    'onComplete' : uploadOnComplete,
                'onAllComplete': uploadOnAllComplete
       
    });
       ... more stuff happens ...

       uploadEnable(reqdKeyIsSet(), true, descrIsSet()); // This calls the function that is throwing the error. Uploadify isn't ready yet, or the queueSize setting doesn't exist.
      
    }
     [/code]