Howdy, Stranger!

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

Upload sizelimit error
  • When I make bad file sizelimit and I click upload we have error, this is correct. When I make again new file, and I click upload nothing the script doesn't run.

    --
    I use script from DEMO and IE7.0

    B
  • This does not occur in firefox or safari. I have not confirmed it in Internet Explorer
  • same problem

    You make filesize condition, the script freeze if you update the file and click upload after first error message.

    You see the problem ?
  • Just tested in Internet Explorer 7. I do not get the same problem.

    I am able to create a file size error and still start fresh uploads without refreshing the page.
  • Yeah, I got the same problem in both Firefox and IE. Each time I upload a file > sizeLimit the SWF will error out internally and won't do anything more until the browser is refresh. That is really annoying!!! This need to be FIXED in the FLA file. I was hoping the latest version of Uploadify would fix it, but I guess not. Even when I set simUploadLimit to 8 for example, I'm still not able to upload any smaller file size since it's already error out internally. I even try onSelect and return false to file > sizeLimit, but it still error out quietly. PLEASE HELP FIX THIS ASAP! Here's my setup script. Try it out:

    $("#uploadify").uploadify({
    uploader:'scripts/uploadify.swf',
    script:'scripts/uploadify.php',
    cancelImg:'cancel.png',
    folder:'uploads',
    queueID:'fileQueue',
    wmode:'transparent',
    width:86,
    height:21,
    queueID:'dvUploadQue',
    auto:true,
    multi:true,
    fileDesc:'Images (*.jpg; *.gif; *.png; *.bmp)',
    fileExt:'*.jpg; *.gif; *.png; *.bmp',
    sizeLimit:1048576,
    onError:function(){
    alert('error')
    },
    onComplete:function(a,b,c,d){
    alert('Complete')
    }
    });
  • Did anybody find a solution for this one?

    I have it, and I am running IE 8, with Uploadify 2.1.0

    Whenever I have a File Size error, it is detected correctly. But then, if I click Select again, I see the file browser. I select some files and click OK. Neither onSelect, onSelectOnce or onError are fired. I added alerts to verify this.

    Any help would me most appreciated. If I don't find a solution, I'll have to resort to reloading the page, using Response.Redirect, to fully reset the control.

    Thanks!