Ignore:
Timestamp:
2006/09/18 17:54:23 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/install/index.php

    r5075 r5076  
    414414    $arrRet =  $objFormParam->getHashArray(); 
    415415     
    416     sfprintr($arrRet);exit; 
     416    if ($arrRet['db_type'] == 'pgsql') { 
     417        $arrRet['db_port'] = ""; 
     418    } 
    417419    $objErr = new SC_CheckError($arrRet); 
    418420    $objErr->arrErr = $objFormParam->checkError(); 
     
    420422    if(count($objErr->arrErr) == 0) { 
    421423        // Àܳ³Îǧ 
    422         $dsn = "pgsql://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server']."/".$arrRet['db_name']; 
     424        $dsn = $arrRet['db_type']."://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server'].$arrRet['db_port']."/".$arrRet['db_name']; 
    423425        // Debug¥â¡¼¥É»ØÄê 
    424426        $options['debug'] = 3; 
Note: See TracChangeset for help on using the changeset viewer.