I have a PHP class that once is called that sets a time limit of 60 seconds. The only feature of this class is that it uses curl_multi_exec ().
set_time_limit(60); ini_set('max_execution_time', 60);
The problem is that on the Apache / server status page this page and another, using a single stream with a swirl, pass by their max_execution_time and reach 200 seconds, sometimes!
What am I missing? Is there a way to configure Apache to complete scripts (or even connections) that run longer than 90 seconds?
source share