Using phpinfo()
, I have verified that PHP
has the following settings:
max_execution_time = 120
max_input_time = 120
Despite these settings, my PHP
script is systematically cutting out at 30 seconds (and then throws a 500 Internal Server Error
). Reviewing the variables displayed when calling phpinfo()
, I cannot see any variable that is set to 30s.
Is there another PHP
setting that I can change to extend my PHP
script execution time?