Re: LimitRequestBody directive for HTTP response 413 error

2005-01-12 Thread Jeff Trawick
On Tue, 11 Jan 2005 21:59:01 -0800 (PST), Joe Smith <[EMAIL PROTECTED]> wrote: > > > LimitRequestBody directive > (http://httpd.apache.org/docs/mod/core.html#limitrequestbody) > in httpd.conf is used to specify the limit on the allowed size of an HTTP > request. > According to the doc., if I don'

[apache-2.1.3] buffering content in input filter

2005-01-12 Thread Pawel Niewiadomski
hello, I'm writing an input filter that needs to operate on a full content of incoming request. But it should not pass incoming data to other input filters - it gathers full body of request, changes it and then passes it further. I have one problem - if I empty a brigade that is passed to the inpu

Re: [apache-2.1.3] buffering content in input filter

2005-01-12 Thread Stas Bekman
Pawel Niewiadomski wrote: hello, I'm writing an input filter that needs to operate on a full content of incoming request. But it should not pass incoming data to other input filters - it gathers full body of request, changes it and then passes it further. I have one problem - if I empty a brigade t

Re: LimitRequestBody directive for HTTP response 413 error

2005-01-12 Thread Joe Smith
Thanks Jeff,   In plugin config in websphere, PostSizeLimit="1000", so this is only 10MB. Looks like this is the issue. Because I couldn't upload a file > 10MB. What do you think? Because I was using TCP Monitor tool to monitor the HTTP response, and I got the following, that's why I think this

Warning from accept filters on startup

2005-01-12 Thread Justin Erenkrantz
With trunk (r124972), I get these warnings on startup on the console: [Wed Jan 12 09:28:50 2005] [warn] (2)No such file or directory: Failed to enable the 'httpready' Accept Filter [Wed Jan 12 09:28:50 2005] [warn] (2)No such file or directory: Failed to e

Re: Warning from accept filters on startup

2005-01-12 Thread Paul Querna
Justin Erenkrantz wrote: With trunk (r124972), I get these warnings on startup on the console: [Wed Jan 12 09:28:50 2005] [warn] (2)No such file or directory: Failed to enable the 'httpready' Accept Filter [Wed Jan 12 09:28:50 2005] [warn] (2)No such file or

Re: LimitRequestBody directive for HTTP response 413 error

2005-01-12 Thread Jeff Trawick
On Wed, 12 Jan 2005 09:27:35 -0800 (PST), Joe Smith <[EMAIL PROTECTED]> wrote: > Thanks Jeff, > > In plugin config in websphere, PostSizeLimit="1000", so this is only > 10MB. Looks like this is the issue. Because I couldn't upload a file > 10MB. > What do you think? yes... you or somebody

Re: [apache-2.1.3] buffering content in input filter

2005-01-12 Thread Nick Kew
On Wed, 12 Jan 2005, Pawel Niewiadomski wrote: > Does anyone know how can I solve this problem? As Stas says, simply don't return to the caller until you've got EOS. You lose the efficiency of pipelining, and beware of how big a request you accept and buffer! -- Nick Kew

Re: [apache-2.1.3] buffering content in input filter

2005-01-12 Thread Nick Kew
On Wed, 12 Jan 2005, Nick Kew wrote: > [a fairly useless message] I meant to add: there are C code examples in my stuff at apache.webthing.com. Can't recollect OTTOMH what's published, but mod_upload is definitely opensource and its tmpfile_filter does what you're asking (though it's not an idea

Re: LimitRequestBody directive for HTTP response 413 error

2005-01-12 Thread Joe Smith
Thanks Jeff. I already search and replace PostSizeLimit="1000" with PostSizeLimit="20480" (200MB), but I still cannot upload a huge file > 10MB. The interesting thing is I couldn't even get HTTP 413 response error anymore, and the page just display "Page cannot be displayed" after uploadin