Howdy, Stranger!

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

onComplete timeout issue
  • Hey there,

    I have implemented uploadify over Zend Framework and it seems to be working perfectly fine on IE.
    On Firefox however I run into a weird timeout issue. My controller action gets called properly and the file gets uploaded but the onComplete event never gets triggered.
    Note that this only happens if I am trying to upload larger files which take longer to get the controller response from php. If the response time is somewhere within 30 seconds I do get the right response.
    I even tried added an alert on the onError event and get no response either.

    	$('#doc_path').uploadify({
    'uploader' : '/scripts/uploadify/uploadify.swf',
    'script' : '/alw/test/upload',
    'checkScript' : '/scripts/uploadify/check.php',
    'cancelImg' : '/scripts/uploadify/cancel.png',
    'auto' : false,
    'scriptData' : {'asset_code':'884385408930_1_1.wav'},
    'folder' : '/var/www/html_myron/public/scripts/uploads',
    'queueID' : 'container',
    'multi' : true,
    onComplete: function(event, queueID, fileObj, response, data){
    alert(response);
    },
    onError: function(event, queueID, fileObj, errorObj){
    alert('Error Occured');
    }
    });


    Any advice will be great! Thanks
  • I have the same problem also in IE - small files work fine, "large ones" (4mb) don´t work! how can we fix this?
  • I'm having the exact same problem... If the upload-action takes more than 1 sec, then the onComplete callback is never triggered. Neither is the onError. Simply nothing happens.

    If anyone knows a solution for this, please post it!

    Thx.

    -Kenneth Auchenberg