4

約 90 秒後、Apache エラー ログにこのエラーが表示されます。PHPの設定を増やす必要があると思いますが、どれを変更すればよいかわかりません。

このエラーをクリアするために増やすことができる設定はありますか?

4

2 に答える 2

5

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 を再起動すれば完了です。

于 2012-06-27T12:17:22.517 に答える
2

set_time_limit(0);PHP スクリプトで無限の時間制限を呼び出すことができます。

于 2012-06-27T12:16:23.357 に答える