Can't upload images, don't know the real reason of upload failing.
I have tried to watch the whole process via Charles Web Debugging Proxy and it shows this:
Charles:

Firebug via console.log():

I don't know from where it takes 400kb/sec uploading speed O_o, when i'm having only 0.5mbps max(it's around 60kb/sec if i'm right).

Image uploading starts fine, but stops at the end, where usually should trigger onComplete listener.
I'm receiving data from onProgress for up to 90% of file size and the all stops.
I have all listeners turned on, none of messages comes back saying anything.
fileListener.onHTTPError = function(file:FileReference, httpError:Number):Void
{
getURL("Javascript:http_error(" + httpError + ");");
}
fileListener.onSecurityError = function(file:FileReference, errorString:String):Void
{
getURL("Javascript:security_error(" + errorString + ");");
}
fileListener.onIOError = function(file:FileReference):Void
{
getURL("Javascript:io_error("+file.name+");");
}
Interesting thing that when i'm limiting my uploading speed with Netlimiter to 20kb~/sec uploading works fine.


What's the real problem and how to fix that? O_o
Thanks a lot!