Copy link to clipboard
Copied
Hello all,
I manage an app that uses Flash to, among other things, receive file uploads from users. As of the release of 30.0.0.113, file uploads in Firefox Windows are no longer working correctly.
Files do upload... but instead of waiting for the upload to complete before triggering fileRefListener.onComplete, it's just triggered right away. This causes a problem because I need to collect information about the uploaded file after it's processed and not waiting for upload completion means that information is not yet available.
I'm not experiencing this issue on any other combination of OS/browser including Firefox Mac. Any ideas? Thank you in advance for your time and attention.
FWIW here is the basic code:
_root.fileRef = new FileReference();
var fileRefListener:Object = new Object();
fileRefListener.onSelect = function(file:FileReference):Void {
var uploadUrl = [URL of server side script that receives file];
_root.fileRef.upload(uploadUrl);
}
fileRefListener.onComplete = function(file:FileReference):Void {
[actions to take after file upload complete signal is received];
}
_root.fileRef.addListener(fileRefListener);
_root.fileRef.browse(_root.fileRefTypes);
Our team has verified this issue appears to be specific to Firefox 60 (it's reproducible with FP 30 and 29). The Firefox nightly build (v62.0a1) does not exhibit this behavior. Our team will follow up with Mozilla. Thanks for the heads up!
Chris
Copy link to clipboard
Copied
Which windows and firefox version? also 32 or 64bit OS?
Copy link to clipboard
Copied
I'm on Windows Home Premium 7, SP1, FireFox 60.0.2 64bit
I'll ask my clients to provide some version information from their reports... they've heard from a number of Windiws/Firefox users with different configurations and initially felt it would be easier to list the combos where it *doesn't* happen (none so far) than the ones where it does.
In any case, I'll post the other data when i get it and thank you.
Copy link to clipboard
Copied
Our team has verified this issue appears to be specific to Firefox 60 (it's reproducible with FP 30 and 29). The Firefox nightly build (v62.0a1) does not exhibit this behavior. Our team will follow up with Mozilla. Thanks for the heads up!
Chris
Copy link to clipboard
Copied
Thank you, Chris. I apologize for assuming it was a Flash thing... as a developer I know how frustrating it can be when you control the "business end" of a system and everyone assumes a breakdown must be your fault because that's where they observe it. It happens to me all the time and I just did it to you.
I appreciate you checking in with the folks at Mozilla and passing the info on to them so they can address it on their end. Cheers!
- alex