I have a script that is timing out on a server that runs the commercial webserver software Zeus (not my choice!)
PHP is run in cgi mode
htaccess partially works but some settings are just ignored
I can do
set_time_limit(0) ;
and it shows as being changed ..
but I can't seem to override
max_input_time
(of course max_input_time may not be the culprit.. but it shows as '60')
I have tried via php.ini with
max_input_time = 903
and have tried
ini_set('max_input_time','902');
(different numbers so I can see if anything takes)
but no luck - script times out after about 3 minutes (ftp transfer of images etc)
Host hasn't replied yet..
Am I out of luck on this?
I have a potential workaround but would rather not have to do it.
ps:
script is triggered to run via a curl call from my own site because stupid Zeus install doesn't support cron of any sort..