Topic: UploadProgress not firing

I have upgraded to 1.4.2, we are using flash runtime, multipart:true, urlstream_upload:true, max_file_size:10mb,  . The UploadProgress event is not firing. It only goes on at 0% and at the end at 100% (we placed an alert to track it)....we wish to build a progress bar around this event.....
Is there any reason why it is not firign the event...We tried with 4MB and 6MB files. Before when using 1.4.1 and the same settings it was OK. thanks

Re: UploadProgress not firing

We updated to the latest flash plugin released from adobe, is this an issue?

Re: UploadProgress not firing

If you are using - urlstream_upload:true and no chunking, you won't get any progress events. It is expected behavior, since URLStream has no way to report about progress. That's Flash...

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: UploadProgress not firing

Ok thanks, Is there a way to go around with flash so that i could have a progress feedback?

Re: UploadProgress not firing

You need, either to use urlstream_upload:true with chunking, or disable both of them and use Flashs default FileReference.upload() method, which will get activated automatically once you disable these. Note that resize option also activates URLStream mode, so no resize in latter case.

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: UploadProgress not firing

Thanks, With chunks, how do i know on the server side which one is the last chunk?

Re: UploadProgress not firing

On server side you get number of total chunks, along with current chunk number and filename. Some simple arithmetics and you should have it smile

If you want to see your issue fixed, do not report it here, do it on - GitHub.

Re: UploadProgress not firing

I am sorry I look in the documentation but nothing lead me on how to setup plupload to send multipart_params and also how to change it for every file..I thank you for the quick responses

Re: UploadProgress not firing

I'm using the 'urlstream_upload : true' only to activate the session on the server side. I need to disable the chunk too.

Is there any way to disable 'chunk' and 'urlstream_upload' and keep the session alive on the server side? I'm using Flash runtime.

Thanks for any help!

Re: UploadProgress not firing

@masimao, you can always pass session id with the file, as on of the multipart_params and restore it manually on the server-side. Although it is considered non secure, for obvious reasons.

If you want to see your issue fixed, do not report it here, do it on - GitHub.