[flexcoders] Re: #2038: File I/O Error

2008-07-02 Thread lytvynyuk
How I can increase upload size? There is no such thing in URLRequest and FileReference... --- In flexcoders@yahoogroups.com, "Sean Clark Hess" <[EMAIL PROTECTED]> wrote: > > We would get that error a lot when the file was too big. Try increasing > your upload size. > > On Wed, Jul 2, 2008 at 1:0

[flexcoders] Re: #2038: File I/O Error

2008-07-02 Thread lytvynyuk
I did. I all cases request can reach server, in my case no. Just an exception, no network activity I'm puzzled. --- In flexcoders@yahoogroups.com, "Sean Clark Hess" <[EMAIL PROTECTED]> wrote: > > You have to do it serverside -- for example, if you're using PHP, you have > to change Apache's ma

[flexcoders] Re: #2038: File I/O Error

2008-07-03 Thread lytvynyuk
Well, I've picked file by browsing using FileReference's browse() method, and my file is simple *.png --- In flexcoders@yahoogroups.com, "Sean Clark Hess" <[EMAIL PROTECTED]> wrote: > > The other thing is that the file may be corrupted, or doesn't exist... > > On Wed, Jul 2, 2008 at 1:43 PM, lytv

[flexcoders] Re: #2038: File I/O Error

2008-07-03 Thread lytvynyuk
Update: I works under IE7 doesn't work with Rirefox 2.0.0.15! Doesn't work with Opera as well! I suspect this is not browser issue, this is FlashPlayer issue, because Firefox and Opera uses same Flash Player binaries! --- In flexcoders@yahoogroups.com, "lytvynyuk" <[EMAIL PROTECTED]> wrote: >

[flexcoders] Re: #2038: File I/O Error

2008-07-03 Thread lytvynyuk
Absolutely same code. Looks like there is some issue with flash player version for Firefox/Opera, which doesn't work properly while uploading via HTTPS. Or may be I'm doing something wrong. --- In flexcoders@yahoogroups.com, "Sean Clark Hess" <[EMAIL PROTECTED]> wrote: > > Do you have different ve

Re: [flexcoders] Re: #2038: File I/O Error

2008-07-02 Thread Sean Clark Hess
You have to do it serverside -- for example, if you're using PHP, you have to change Apache's maximum upload size for that domain. Do a search for error 2038 in these forums though, I thought I saw another couple of threads about it. ~sean On Wed, Jul 2, 2008 at 1:33 PM, lytvynyuk <[EMAIL PROTEC

Re: [flexcoders] Re: #2038: File I/O Error

2008-07-02 Thread Sean Clark Hess
The other thing is that the file may be corrupted, or doesn't exist... On Wed, Jul 2, 2008 at 1:43 PM, lytvynyuk <[EMAIL PROTECTED]> wrote: > I did. I all cases request can reach server, in my case no. Just an > exception, no network activity I'm puzzled. > > > --- In flexcoders@yahoogroups

Re: [flexcoders] Re: #2038: File I/O Error

2008-07-03 Thread Sean Clark Hess
Yeah, sorry, I'm not sure On Thu, Jul 3, 2008 at 8:50 AM, lytvynyuk <[EMAIL PROTECTED]> wrote: > Well, I've picked file by browsing using FileReference's browse() > method, and my file is simple *.png > > > --- In flexcoders@yahoogroups.com , "Sean > Clark Hess" <[EMAIL PROTECTED]> wrote: > > >

Re: [flexcoders] Re: #2038: File I/O Error

2008-07-03 Thread Sean Clark Hess
Do you have different versions running in IE and firefox? On Thu, Jul 3, 2008 at 8:56 AM, lytvynyuk <[EMAIL PROTECTED]> wrote: > Update: > I works under IE7 doesn't work with Rirefox 2.0.0.15! > Doesn't work with Opera as well! I suspect this is not browser issue, > this is FlashPlayer issu

Re: [flexcoders] Re: #2038: File I/O Error

2008-07-03 Thread Tomas Lin
have you tried appending a JsessionId with your session id at the end? http://bugs.adobe.com/jira/browse/FP-78 On Thu, Jul 3, 2008 at 10:56 AM, lytvynyuk <[EMAIL PROTECTED]> wrote: > Update: > I works under IE7 doesn't work with Rirefox 2.0.0.15! > Doesn't work with Opera as well! I suspect t

[flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-05 Thread Dennis Falling
I have this problem for standard uploads too, not just SSL... Again, it works fine in IE, so I know that the address and file are valid. Any ideas? On Wed, Jun 4, 2008 at 1:48 PM, Dennis Falling <[EMAIL PROTECTED]> wrote: > I searched the web and the group and found a thread going about this >

[flexcoders] Re: #2038: File I/O Error only in firefox

2008-07-02 Thread Mike Paul Pavlasek
Here is a bug in Flash Player (Firefox + SSL), please vote for it, http://bugs.adobe.com/jira/browse/FP-201 (probably a duplicity for http://bugs.adobe.com/jira/browse/FP-78 but assigned to another person ;) ) CoPLaS --- In flexcoders@yahoogroups.com, Jon Bradley <[EMAIL PROTECTED]> wrote: > > I

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-05 Thread Jon Bradley
I'm guessing it's because the session is not retained when performing a file upload to the server - a new session id is created for each FileReference upload attempt. This is a known issue with various workarounds. Modify your server code to ignore any session or login details to be sure t

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-05 Thread Dennis Falling
Thanks for the reply... That information was exactly what I needed. I'm actually really surprised that I hadn't run across any of it- I've spent several hours googling trying to find a solution. Thanks a lot! -dennis On Thu, Jun 5, 2008 at 12:12 PM, Jon Bradley <[EMAIL PROTECTED]> wrote: >

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-06 Thread Dennis Falling
I finally got around to implementing the fix and am having issues on the server... It basically is thinking that the ;jsessionid... is part of the command name being called: UnsupportedCommandException: cmd 'uploadfile;jsessionid=4913B7A92119CA91D683D8F884829475' is not supported. Anyone know a fix