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.
  • Hi,

    yes i've used the search :).

    first the implementation:


        $(\"#fileInput\").uploadify({
    'uploader' : 'js/uploadify/uploadify.swf',
    'script' : 'uploads/files',
    'cancelImg' : '/flash-uploader/cancel.png',
    'folder' : 'downloads/',
    'queueID' : 'fileQueue',
    'auto' : true,
    'multi' : true,
    'onError' : function (a, b, c, d) {
    if (d.status == 404)
    alert('Could not find upload script.');
    else if (d.type === \"HTTP\")
    alert('error aa'+d.type+\": \"+d.status);
    else if (d.type ===\"File Size\")
    alert(c.name+'bb '+d.type+' Limit: '+Math.round(d.sizeLimit/1024)+'KB');
    else
    alert('error cc'+d.type+\": \"+d.text);
    },
    'onComplete': function(data) {

    }
    });


    there is no problem with the uploadify implementation in general. No errors and some of the onComplete alerts are positive.

    The problem is that the script never achieve the filesAction() in Uploads controller.

    I get as return the IndexController indexAction(). Someone got any idea?

    edit: it's probably important to know that any jquery requests are running correctly like:

    $.ajax({
    type: \"POST\",
    async: false,
    url: 'newsletteradmin/edit-tags',
    data: parameters,


    thx for helping,

    loklok
  • The problem isn't with zend, its with flash in general. Flash has to submit to a actual file, otherwise it doesn't work.

    The way i did it is long winded but it works

    1. I upload the file to a /js/uploadify/something.php script
    2. The script renames the file to a randomized name and moves it to a working folder with a text file of the same name. The text file contains all the variables i submitted with uploadify(name, surname, title, etc).
    3. From the script I then make a curl call that passes the randomized file name back to zend and zend finds the file in the working folder and moves it where it needs it. Also, it gets all the additional variables from the text file of the same name.

    If you have a better way, or a way to make zend(or cakephp or any other cms that rewrites urls) and flash gel better, let met know.
  • mhh yes thats the way i made it but wasn't really satisfied with that solution