Execution Time Limit In Php Not Setting To Infinte Time?
I have given these settings on my php.ini which is a xampp v3.30 version max_execution_time=10000 max_input_time=60 My php script calls an python api which loops db and get value
Solution 1:
It seems that a value set to 0 (and sometimes -1) describes infinity
Try this :
max_execution_time=0max_input_time=0
source :
https://www.php.net/manual/fr/info.configuration.php#ini.max-input-timehttps://www.php.net/manual/fr/info.configuration.php#ini.max-execution-time
Post a Comment for "Execution Time Limit In Php Not Setting To Infinte Time?"