Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Queue Didn't Appear
  • Hi

    I'm using uploadify in a wordpress framework.

    Everything looks fine. Except for when I select a file, the Upload Queue didn't appear. I tried using onAllComplete, but couldn't trigger anything.

    Help please?


    $('#fileUpload').fileUpload({ 
    'uploader': 'uploader.swf',
    'script': '.upload.php',
    'folder': '/uploads',
    'cancelImg': 'cancel.png',
    'fileDesc': 'Image Files',
    'fileExt': '*.jpg;*.jpeg;*.gif;*.png',
    'auto': 'true',
    'multi': false,
    'displayData': 'speed',
    'buttonText': 'Browse for Image',
    'wmode' : 'transparent',
    'onAllComplete': function(){
    alert('complete')
    }
    });
  • 'script': '.upload.php',


    That period might be an issue.
  • Hi...
    Did you finally succeed to do what you want ?
    if so, I would really enjoy that you explain me how you do that...
    I'm trying to find for days a way to upload multiple files like that...
    Thanks a lot to share if it's OK !!!
    Best regards
  • Hi again.

    I still can't find a way on how to make the file transfers appear on the queue.

    @Zaxnyd I corrected the typo. Still nothing. Thanks anyway.

    Did anyone find a solution for this?

    I tried from scratch, still won't appear.

    The file is uploaded into the specified folder, but the progress indicator does not appear.

    Thanks.
  • GOT IT!

    Thanks to TravisN.
    Follow this post: viewtopic.php?f=7&t=312#p862

    I followed exactly as written.

    What I did wrong was I had my file input as 'fileUpload' id. So I changed it to div and working fine now.

    Good Luck