I can successfully add a file or files to my queue, and start the upload. While in debug mode I can that the progress increments successfully, but when the bytes uploaded reaches the total bytes, everything just stops and no further events are triggered, and the file is never uploaded by my php upload script. I get no PHP errors in my log.
I can console.log the file_obj in the progress function, and it shows a filestatus of -2 (In Progress). I am console.logging all variables sent to the error, success, and complete handlers and get noting (they are not just empty, but not even called). Any help would me GREATLY appreciated. Let me know if I can provide any more info.
Thanks,
Josh
Events stop when progress reaches 100%
February 9, 2010 - 10:45am
February 9, 2010 - 2:28pm
What is your client? Are you on a Mac?
February 9, 2010 - 2:34pm
Safari and Chrome (I can test non-webkit, if you think it is browser related). And yes, I'm on a mac 10.6.2.
February 9, 2010 - 4:30pm
You MUST return content from your upload script or the Mac Flash Player will not trigger the uploadSuccess event.
Usually this is as simple as adding echo "HERE IS SOME CONTENT"; to the end of your PHP script.