Ignore:
Timestamp:
2009/07/08 16:39:57 (15 years ago)
Author:
kajiwara
Message:

2.4.1 正式版をコミット。コミット内容詳細はこちら(http://svn.ec-cube.net/open_trac/query?status=closed&milestone=EC-CUBE2.4.1

File:
1 edited

Legend:

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

    r18176 r18177  
    2626 
    2727define("INSTALL_LOG", "./temp/install.log"); 
     28define("INSTALL_INFO_URL", "http://www.ec-cube.net/install_info/index.php"); 
    2829ini_set("max_execution_time", 300); 
    2930 
     
    305306    } 
    306307    $req->clearPostData(); 
    307  
    308308    break; 
    309309case 'return_step0': 
     
    328328    break; 
    329329} 
    330  
    331330//フォーム用のパラメータを返す 
    332331$objPage->arrForm = $objWebParam->getFormParamList(); 
     
    390389        ".." . HTML2DATA_DIR . "Smarty/", 
    391390        ".." . HTML2DATA_DIR . "logs/", 
    392         ".." . HTML2DATA_DIR . "downloads/" 
     391        ".." . HTML2DATA_DIR . "downloads/", 
     392        ".." . HTML2DATA_DIR . "upload/" 
    393393    ); 
    394394 
     
    467467            mkdir($path); 
    468468        } 
     469        $path = ".." . HTML2DATA_DIR . "upload/csv"; 
     470        if(!file_exists($path)) { 
     471            mkdir($path); 
     472        } 
    469473        $mess.= ">> ○:アクセス権限は正常です。<br>"; 
    470474    } 
     
    609613    } 
    610614    $objPage->tpl_sslurl = $secure_url; 
     615    //EC-CUBEオフィシャルサイトからのお知らせURL 
     616    $objPage->install_info_url = INSTALL_INFO_URL; 
    611617    return $objPage; 
    612618} 
     
    10181024    if($objDb->sfTabaleExists('dtb_csv', $dsn)) { 
    10191025        lfInsertCSVData(1,'category_id','カテゴリID',53,'now()','now()', $dsn); 
    1020         lfInsertCSVData(4,'order_id','注文ID',1,'now()','now()', $dsn); 
     1026        lfInsertCSVData(4,'order_id','注文番号',1,'now()','now()', $dsn); 
    10211027        lfInsertCSVData(4,'campaign_id','キャンペーンID',2,'now()','now()', $dsn); 
    10221028        lfInsertCSVData(4,'customer_id','顧客ID',3,'now()','now()', $dsn); 
Note: See TracChangeset for help on using the changeset viewer.