Re: [users@httpd] Get request of large file size greater than 100KB

2018-09-28 Thread William A Rowe Jr
I've looked at the httpd and apr code, what source package were you using which started from a default MAX_IOVEC_TO_WRITE (APR_MAX_IOVEC_SIZE?) of 6? TIA, Bill On Thu, Sep 27, 2018 at 11:59 AM Hemant Chaudhary < hemantdude.chaudh...@gmail.com> wrote: > Hi, > > I have solved the problem by

Re: [users@httpd] Get request of large file size greater than 100KB

2018-09-27 Thread Hemant Chaudhary
Hi, I have solved the problem by changing MAX_IOVEC_TO_WRITE value to 6 from 16. Now maximum data will be 8KB*6=48KB, which is less than writev max limit of 52KB. Thanks Hemant On Thu, Sep 27, 2018 at 7:56 PM Googalar wrote: > Perhaps this thread will help you out... > >

Re: [users@httpd] Get request of large file size greater than 100KB

2018-09-27 Thread Googalar
Perhaps this thread will help you out... https://stackoverflow.com/questions/33811543/php-and-mod-fcgid-ap-pass-brigade-failed-in-handle-request-ipc-function# On Thu, Sep 27, 2018 at 1:15 AM Hemant Chaudhary wrote: > > Hi All, > > I am trying to access large file(get request) of large file. This

[users@httpd] Get request of large file size greater than 100KB

2018-09-27 Thread Hemant Chaudhary
Hi All, I am trying to access large file(get request) of large file. This is working properly if size of file is less than 52KB. But size greater than 52KB is giving me error 4022. I have debugged and come to know that writev function can write maximum upto 52KB only. Therefore I changed the