Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flex: Error #2038: File I/O Error [closed]

I have a flex app doing multiple file upload, and keep getting this error: Error #2038: File I/O Error

Flex gives this error, yet it seems to work because the upload does get processed. This was happening intermittently, now on every attempt. Any ideas on what might be going on here? I've checked that permissions are read/write, google'd something about a trailing slash issue with the url. I'm at a loss as to what could be going on.

like image 855
Ronn Avatar asked Oct 09 '09 19:10

Ronn


People also ask

What is Flex error?

flex-error is a lightweight Rust library that uses macros and traits to switch between different error tracing implementations and no_std.

What is a Bison error?

The Bison parser detects a syntax error (or parse error) whenever it reads a token which cannot satisfy any syntax rule. An action in the grammar can also explicitly proclaim an error, using the macro YYERROR (see Special Features for Use in Actions).

Which section of web config will handle the errors of the website?

You can handle default errors and HTTP errors by adding a customErrors section to the Web. config file. The customErrors section allows you to specify a default page that users will be redirected to when an error occurs.


2 Answers

Are you using an SSL certificate on the server you're uploading to? I've had issues in the past where the Flash Player will randomly fail due to an invalid SSL certificate...

Cheers

like image 185
Danny Kopping Avatar answered Nov 10 '22 00:11

Danny Kopping


It might be a good idea to look at the trafic using a tool like charles. That might give you a better indication of what really goes wrong.

It's also good to know that the Flash player with uploads forgets to send some cookies, this can cause your session at the server to be different.

like image 40
EECOLOR Avatar answered Nov 09 '22 23:11

EECOLOR