Author Topic: Apache AH00524 error with code 70007  (Read 15029 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Apache AH00524 error with code 70007
« on: May 17, 2019, 04:23:51 PM »
Hello,

I'm having a problem with my CentOS 7.6 server w/ CWP. When trying to upload a file (Wordpress theme upload), the browser session seems to terminate before the file can be uploaded (Browser states ERR_CONNECTION_ABORTED).

In my apache logs, I see the following error, which correlates to the browser session (xxx = my home IP):
Code: [Select]
[Fri May 17 09:10:38.723389 2019] [core:error] [pid 1943:tid 139641030129408] [client xxx.xxx.xxx.xxx:55273] AH00524: Handler for (null) returned invalid result code 70007, referer: https://www.mysite.com/wp-admin/theme-install.php?browse=featured
I've tried everything I can in the PHP.ini file (increasing timeouts, file upload size, etc), which has done nothing. I've also disabled Mod Security, as well as CSF. An extensive Google search also hasn't seem to help much. I also don't have this problem on any of my other CentOS 7.6 servers that don't use CWP. I'm using the "Apache Only" option in CWP, along with PHP 7.3.5. PHP-FPM is not installed.

Any ideas?

-Sean

Offline
*****
Re: Apache AH00524 error with code 70007
« Reply #1 on: May 18, 2019, 01:07:31 AM »
Add this line to apache vhost under "proxy_fcgi_module"
Code: [Select]
ProxyTimeout 600
eg :
Code: [Select]
        <IfModule proxy_fcgi_module>
<FilesMatch \.php$>
SetHandler "proxy:%backend_fcgi%|fcgi://localhost"
</FilesMatch>
        ProxyTimeout 600
</IfModule>
« Last Edit: May 18, 2019, 01:28:33 AM by Sandeep »

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #2 on: August 06, 2019, 10:24:11 AM »
I have the same problem, or what is the file?

My conf :

Apache version: Apache/2.4.39
PHP version: 7.3.6 PHP-FPM is forced
Web Servers: apache-only

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #3 on: September 04, 2019, 10:36:52 AM »
need help plz

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #4 on: September 17, 2019, 11:52:22 AM »
I am having the same problem. This problem comes when we upload file of size greater than 8MB .

Even, my configuration is like below,

1. max_execution_time   300   300
2. max_file_uploads   20   20
3. max_input_time   3000   3000
4. memory_limit   -1   -1
5. post_max_size   4096M   4096M
6. upload_max_filesize   2048M   2048M


Please Help me.

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #5 on: September 20, 2019, 09:33:45 AM »
I found the solution, for my configuration:
I disable module LoadModule reqtimeout_module modules / mod_reqtimeout.so in apache httpd.conf

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #6 on: September 20, 2019, 11:08:33 AM »
Thank You very Much.
This solves my problem

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #7 on: January 27, 2020, 04:14:33 PM »
Disabling mod_reqtimeout.so as suggested by StephaneB works for me too.
I'm curious of how to debug this in PHP and what caused it.

Offline
*
Re: Apache AH00524 error with code 70007
« Reply #8 on: February 18, 2020, 04:30:13 PM »
I found the solution, for my configuration:
I disable module LoadModule reqtimeout_module modules / mod_reqtimeout.so in apache httpd.conf


here from Portugal
thank you helped me a lot
Jony Host