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.
onQueueFull doesn't work
  • Hello,

    First, sorry for my bad english :)

    I got a problem width onQueueFull option. Alert message always freeze my firefox. I would like to insert an error message in
    when queue is full and skip alert() box message.

    Thank you for help.

    $(document).ready(function() {
    $(\"#uploadify\").uploadify({
    'uploader' : 'uploadify.swf',
    'script' : 'uploadify.php',
    'cancelImg' : 'cancel.png',
    'folder' : 'medias',
    'queueID' : 'fileAttente',
    'queueSizeLimit' : '10',
    'multi' : true,
    'buttonText' : 'Images',
    'auto' : false,
    'fileDesc' : 'GIF - JPG - PNG',
    'fileExt' : '*.gif;*.jpg;*.png',
    'sizeLimit' : '153600',
    'onAllComplete' : function(){$(\"#fileAttente\").html(\"Envoi termine\");},
    'onQueueFull' : function(event,queueSizeLimit){$(\"#fileAttente\").html('The queue is full. The max size is ' + queueSizeLimit + '.');},
    'onError' : function(){$(\"#fileAttente\").html(\"Une erreur est survenue !\");}
    });
    });
  • Please help ! :cry:
  • having a similar issue with queueSizeLimit and onQueueFull...

    It crashed fire fox!

    Any suggestions???
  • Sorry for my English...
    Add in the end of the onQueueFull function
    return false;
  • Just to say I have the same issue with "onQueueFull" in Firefox. It crashes the browser and it then has to be terminated in Task Manager to clear the situation.

    I tried the "return false;" idea recommended above and this results in the same problem.

    John
  • I have the same probleme, but with "onComplete"
  • You're passing a string where it expects a number:

    'queueSizeLimit' : '10',


    Try changing to:

    'queueSizeLimit' : 10,
  • Hi !

    Its ok for me now ... but !

    Is it possible to keep upload at this time ?

    Thanks a lot :)