Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを行うために IIS 6 のメタベースにいくつかのトリックがあったことは知っていますが、7 は異なります。
基本的に、通常の PHP の方法で独自のタイムアウトを処理する長時間実行される PHP スクリプトがあり、それが完了する前にサーバーによって強制終了され続けます。その 1 つのスクリプトだけに長いタイムアウトを与えるか、タイムアウトをまったく与えず、他のスクリプトには与えないための IIS 7 手順が必要です。
set_time_limit 関数を確認してください。
set_time_limit(0); //実行時間制限を削除します
http://php.net/manual/en/function.set-time-limit.php