Changeset 17400


Ignore:
Timestamp:
2008/07/02 17:48:21 (16 years ago)
Author:
naka
Message:

テーブル生成タイムアウト対策

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/html/install/index.php

    r17399 r17400  
    192192        } 
    193193    } 
    194  
     194         
    195195    if(count($objPage->arrErr) == 0) { 
    196196        // 設定ファイルの生成 
     
    780780            $sql_split = split(";",$sql); 
    781781            foreach($sql_split as $key => $val){ 
     782                // タイムアウト防止 
    782783                echo ' '; 
     784                lfFlush(); 
    783785                if (trim($val) != "") { 
    784786                    $ret = $objDB->query($val); 
     
    10961098} 
    10971099 
     1100function lfFlush() { 
     1101    flush(); 
     1102    ob_end_flush(); 
     1103    ob_start(); 
     1104} 
     1105 
    10981106?> 
Note: See TracChangeset for help on using the changeset viewer.