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.
Uploadify 2.1 stop working
  • Hello all,

    Uploadify stop to work properly and I don't know why.
    I've got this error message :


    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.1; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Timestamp: Sun, 20 Nov 2011 00:53:27 UTC


    Message: Object doesn't support this property or method
    Line: 35
    Char: 2
    Code: 0
    URI: http://www.labougeotte.net/membres/gestionvideos.php?ID=1&id_sortie=104&uid=bd5b3aff90b61fa0989c8113e725aaa8&id_album=81


    Here's the script :

    <script type="text/javascript">
    $(document).ready(function() {
    $("#uploadify").uploadify({
    'uploader' : 'uploadify.swf',
    'script' : 'uploadify.php?1|81|bd5b3aff90b61fa0989c8113e725aaa8',
    'cancelImg' : 'cancel.png',
    'folder' : 'uploads',
    'queueID' : 'fileQueue',
    'fileDesc' : 'Format videos',
    'fileExt' : '*.flv;*.mpg;*.avi;*.wmv',
    'buttonImg' : 'bouton.png',
    'width' : '108',
    'height' : '21',
    'auto' : true,
    'multi' : true,
    'onAllComplete' : function(e, d) {
    if (d.errors == 0) {
    window.location = 'http://www.labougeotte.net/membres/gestionvideos.php?ID=1&id_sortie=104&id_album=81&uid=bd5b3aff90b61fa0989c8113e725aaa8';
    } else {
    // error handling
    return false;
    }
    }
    });
    });
    </script>


    And the line 35 is the one that starts with : $("uploadify").uplodify({

    Thank you