How to set Max execution time in php.ini?
01-05-2017 23:43:47
PHP / php.ini
0 Bookmark(s)
136 View(s)
max_execution_time=30
Maximum execution time of each script, in seconds
Maximum amount of time each script may spend parsing request data. It's a good idea to limit this time on productions servers in order to eliminate unexpectedly long running scripts.
Note:
This directive is hard coded to -1 for the CLI SAPI
- Default Value: -1 (Unlimited)
- Development Value: 60 (60 seconds)
- Production Value: 60 (60 seconds)
Reference: php.ini file location in xampp C:\xampp\php\php.ini
Tags:
php execution time, php.ini settings