php max input time

Solutions on MaxInterview for php max input time by the best coders in the world

showing results for - "php max input time"
Sofia
24 Oct 2018
1A quick look into the php.ini file will show you:
2
3; Maximum amount of time each script may spend parsing request data. It's a good
4; idea to limit this time on productions servers in order to eliminate unexpectedly
5; long running scripts.
6; Note: This directive is hardcoded to -1 for the CLI SAPI
7; Default Value: -1 (Unlimited)
8; Development Value: 60 (60 seconds)
9; Production Value: 60 (60 seconds)
10; http://php.net/max-input-time
11max_input_time=60
12So as you already guessed correct:
13
14; Default Value: -1 (Unlimited)
15               //^^^^^^^^^^^^^^
16You can see the php.ini files for production and development on github:
17
18php.ini file for production
19php.ini file for development