[users@httpd] 403 error upon upgrade

2018-09-27 Thread Jack M. Nilles
Two days ago I upgraded my SUSE server. It serves three websites as virtual sites. All of the sites run php. Upon restarting apache 2.4 I got the following error message: [Wed Sep 26 07:36:55.666104 2018] [autoindex:error] [pid 12345] [client 1.2.3.4:50430] AH01276: Cannot serve directory

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] Apache httpd 2.4.35 was installed successfully to CentOS 7.5 using rpm

2018-09-27 Thread Googalar
+1 On Thu, Sep 27, 2018 at 12:16 AM kohmoto wrote: > > Hi, > > Platform: > > CentOS Linux release 7.5.1804 (Core) > kernel version: kernel-3.10.0-862.11.6.el7 > > I have installed the newly released Apache httpd 2.4.35 on the above > platform through rpmbuild successfully with no

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