Using an opencart plugin I am getting these errors in my apache error log
Read POST information timed out
(22)Invalid argument: client stopped connection before rvputs completed
I just wanted to verify this is due to a client side http connection timeout when reading a large xml file.
Is there any configuration I can change server side to prevent this? Since it’s related to a client side timeout I am doubtful.
My idea is to remove the http requirement altogether. I’m thinking of just running a cron script, or starting a process and not waiting for it to finish like here. Don't wait for the process to exit
Outputting data to the browser periodically fixed this. Apache was loading a request for about 10 minutes without output causing the browser to close the connection on the client side. I just sent periodic status updates using echo and it worked.