Howdy, Stranger!

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

'folder' parameter ignored
  • I've implemented uploadify into a Zend_Framework based system. With looking at the various messages I have it working apart from one aspect;

    The folder attribute is ignored. Irrespective of what I set it to e,g,
    $(document).ready(function(){
    $('#testupload').uploadify({
    'folder' : '/upload',
    'onError' : testComplete,
    'onComplete' : testComplete,
    'script' : '/test/index/uploadprocess',
    'multi' : 1,'auto' : 1,
    'buttonText' : 'Browse',
    'cancelImg' : '/images/uploadify/cancel.png',
    'uploader' : '/js/jquery/uploadify/uploadify.swf'});
    });


    I've set it to the absolute path i.e /var/www/vhosts/.../upload. I've set it to http://mysite.com/upload

    but always, inspection of the actual $_FILE (in php) shows that the temporary file is loaded into /tmp/

    Have I misconstrued the intent of this parameter 'cus I can see no other use for it.

    Thanks