On my linux box I want to simulate a timeout. I need the apache setting which tells php (running as a module) to terminate after a certain time (say 300 seconds).
I tried TimeOut in httpd.conf, but this doesn't work.
The reason is, there are many hosters who constrain the runtimes of php scripts to 300 seconds for example. I need to simulate this, but I don't know which setting it is (can't find any information about this).
set_time_limit() in php or max_execution_time in php.ini are not what I seek, because they are overwritten by this ominous apache setting.
Or maybe it is a setting in the OS?
Please help me out!