End of file found error with Apache2::UploadProgress

2008-05-30 Thread greg boyington
component to abort with the error End of file found. Subsequent uploads handled by this httpd process are handled normally. The error does not seem related to the browser; I have been testing with various firefox 3 betas, including RC1, firefox 2.0.14, safari 3.1.1, opera 9.24, all on OS X, as well

End of file found error with Apache2::UploadProgress

2008-05-30 Thread greg boyington
component to abort with the error End of file found. Subsequent uploads handled by this httpd process are handled normally. The error does not seem related to the browser; I have been testing with various firefox 3 betas, including RC1, firefox 2.0.14, safari 3.1.1, opera 9.24, all on OS X, as well

End of file found error with Apache2::UploadProgress

2008-05-28 Thread Greg Boyington
component to abort with the error End of file found. Subsequent uploads handled by this httpd process are handled normally. The error does not seem related to the browser; I have been testing with various firefox 3 betas, including RC1, firefox 2.0.14, safari 3.1.1, opera 9.24, all on OS X, as well

Re: End of file found error

2007-06-11 Thread Raymond Wan
Hi Joe, Joe Schaefer wrote: Anything here looks suspicious? Yes. Your code behaves as if CGI.pm was being used by Mason instead of apreq. When that happens, CGI.pm steals the post data, and apreq sees nothing but an End of File situation. If I were you, I'd double-check how you

Re: End of file found error for file uploading

2007-06-10 Thread Joe Schaefer
browser, I am getting a single message: End of file found. That is, the single line. What's happening is that $req-upload calls $req-body, and that is die'ing with the End of file found error. What browser are you using, and what version of apreq? (The problem you're seeing is either a bug

Re: End of file found error for file uploading

2007-06-10 Thread Raymond Wan
of file found error. What browser are you using, and what version of apreq? Oh! I see. After I read your message, I tried other browsers and while all browsers could be wrong, I got the same error. First, I was using Iceweasel 2.0.0.3 and then I tried the Gnome Web Browser (Epiphany) 2.14.3

Re: End of file found error for file uploading

2007-06-10 Thread Joe Schaefer
Raymond Wan [EMAIL PROTECTED] writes: apreq2 is version 2.08.4 on Debian stable (testing seems to have a 2.08.5...). Hmm, that's the latest version. I don't think debian has applied any local mods to the codebase. Any suggestions on how I can resolve the problem? Could there be something

Re: End of file found error

2007-06-10 Thread Raymond Wan
the commented line up, I get the End of file found error... As much as I'd like to be like other newbies and blame either apreq2 or the browser and say one of them is buggy :-) ...I'm more inclined to believe that since other people use it, it must be something that I'm doing wrong. If I remove the file

Re: End of file found error

2007-06-10 Thread Joe Schaefer
Raymond Wan [EMAIL PROTECTED] writes: For some reason, I am doubting my own HTML skills...or perhaps I've been staring at this for so long, the screen is getting blurry :-) . Anything here looks suspicious? Yes. Your code behaves as if CGI.pm was being used by Mason instead of apreq. When

RE: Apache2::Upload and End of file found error Part 2

2006-12-08 Thread cfaust-dougot
! From: Fred Moyer [mailto:[EMAIL PROTECTED] Sent: Thu 12/7/2006 2:33 AM To: cfaust-dougot Cc: modperl@perl.apache.org Subject: Re: Apache2::Upload and End of file found error Part 2 cfaust-dougot wrote: Folks, I'm still trying to figure out what to do about this upload problem

Re: Apache2::Upload and End of file found error Part 2

2006-12-08 Thread Perrin Harkins
cfaust-dougot wrote: Argh you're right - since it was created in the global hash I thought it was part of the globals and didn't look closely enough. Yep, I was just making sure.. That makes it even more of a mystery though, don't you think? Well, although the CGI object is not a global,

RE: Apache2::Upload and End of file found error Part 2

2006-12-07 Thread cfaust-dougot
them to work together?? Thanks -Chris From: Fred Moyer [mailto:[EMAIL PROTECTED] Sent: Thu 12/7/2006 2:33 AM To: cfaust-dougot Cc: modperl@perl.apache.org Subject: Re: Apache2::Upload and End of file found error Part 2 cfaust-dougot wrote: Folks, I'm

Re: Apache2::Upload and End of file found error Part 2

2006-12-07 Thread Fred Moyer
to get them to work together?? Thanks -Chris From: Fred Moyer [mailto:[EMAIL PROTECTED] Sent: Thu 12/7/2006 2:33 AM To: cfaust-dougot Cc: modperl@perl.apache.org Subject: Re: Apache2::Upload and End of file found error Part 2 cfaust-dougot wrote: Folks, I'm

Apache2::Upload and End of file found error Part 2

2006-12-06 Thread cfaust-dougot
init_global_vals then the update works fine, if its uncommented then the server error of End of file found happens. http://208.3.90.212/test.pm.txt I have no idea how one relates to the other, any ideas? Thanks -Chris From: cfaust-dougot [mailto:[EMAIL

Re: Apache2::Upload and End of file found error Part 2

2006-12-06 Thread Fred Moyer
CGI(); in the sub init_global_vals then the update works fine, if its uncommented then the server error of End of file found happens. http://208.3.90.212/test.pm.txt I have no idea how one relates to the other, any ideas? I'm not sure why you would want a CGI object shared between requests

Apache2::Upload and End of file found error

2006-12-05 Thread cfaust-dougot
Hi, I'm trying to use Apache2::Upload as shown in the examples and the only thing I get is End of file found in the error log. I've found quite a few messages on the subject, but I'm not using Mason and I'm using libapreq2.0.7.1. I've tried the fh and slurp methods and both are the same.