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 uploading files
  • Hello dear,



    I have a problem when tried to upload multi files...

    I want to catch a exception:

    I have this:

    $('#file_upload').uploadify({
    'uploader' : '/uploadify/uploadify.swf',
    'script' : '/uploadify/uploadify.php',
    'method':'post',
    'buttonText': 'Seleccionar',
    'cancelImg' : '/uploadify/cancel2.png',
    'queueID' : 'fileQueue',
    'multi': true,
    'auto': false
    });

    Good, when i have the files ready for to upload in of queue and i go to the directory from where I selected and remove one of the files that is in the queue, then do not upload the files. How i can solve this?

    Thanks... Excuse my English... I am from Colombia and I don't speak much English...

    Regards,
    Gabriel Tirado
    [email protected]
    --
    In spanish is:

    Hola amigos,

    Tengo un problema cuando intento cargar multiples archivos....
    Quiero capturar una excepcion:

    Tengo esto:

    $('#file_upload').uploadify({
    'uploader' : '/uploadify/uploadify.swf',
    'script' : '/uploadify/uploadify.php',
    'method':'post',
    'buttonText': 'Seleccionar',
    'cancelImg' : '/uploadify/cancel2.png',
    'queueID' : 'fileQueue',
    'multi': true,
    'auto': false
    });


    Bueno, cuando tengo archivos listos para subir en la cola y voy al directorio de donde los seleccione y elimino uno de los archivos que tengo listo en la cola de carga, entonces no cargan los archivos. Cómo puedo resolver esto?

    Gracias...

    Saludos,

    Gabriel Tirado
    [email protected]

  • [Solved]

    Bueno...

    Por fin pude solucionarlo...

    Toco primero que todo estudiar un poco de flash...

    En el archivo flash en la parte donde esta el file.addEventListener(IOErrorEvent.IO_ERROR, function(event:IOErrorEvent) : Void , borre el trigger que aparecia y puse una llamada a una funcion externa de javascript.

    ExternalInterface.call('errorNotFound("'+ID+'")');

    la funcion errorNotFound, se encuentra en el javascript del proyecto. De esta forma en el proyecto voy obteniendo el ID de la imagen que ha sido eliminada del directorio local cuando ya estaba lista para ser cargada al servidor.

    Espero le pueda ayudar a alguien más...

    Muchas gracias por su interes.