約 90 秒後、Apache エラー ログにこのエラーが表示されます。PHPの設定を増やす必要があると思いますが、どれを変更すればよいかわかりません。
このエラーをクリアするために増やすことができる設定はありますか?
約 90 秒後、Apache エラー ログにこのエラーが表示されます。PHPの設定を増やす必要があると思いますが、どれを変更すればよいかわかりません。
このエラーをクリアするために増やすことができる設定はありますか?
php.ini
ファイル内で次のようなものを見つけます。
; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 600
; 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 hardcoded to -1 for the CLI SAPI
; Default Value: -1 (Unlimited)
; Development Value: 60 (60 seconds)
; Production Value: 60 (60 seconds)
; http://php.net/max-input-time
max_input_time = 600
値を編集し、apache を再起動すれば完了です。
set_time_limit(0);
PHP スクリプトで無限の時間制限を呼び出すことができます。