Changeset 290

Show
Ignore:
Timestamp:
07/23/07 10:42:58 (1 year ago)
Author:
bermiferrer
Message:

Reorganizing environment files into the folder config/environments, and turning off database persistence default configuration.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/app/models/framework_setup.php

    r269 r290  
    278278        'user' => '%production_database_user', 
    279279        'password' => '%production_database_password', 
    280         'options' => 'persistent' // persistent, debug, fetchmode, new 
     280        'options' => '' // persistent, debug, fetchmode, new 
    281281    ), 
    282282     
     
    289289        'user' => '%development_database_user', 
    290290        'password' => '%development_database_password', 
    291         'options' => 'persistent
     291        'options' => '
    292292    ), 
    293293     
     
    303303        'user' => '%testing_database_user', 
    304304        'password' => '%testing_database_password', 
    305         'options' => 'persistent
     305        'options' => '
    306306    ) 
    307307); 
  • trunk/config/DEFAULT-config.php

    r2 r290  
    1010        'user' => '', 
    1111        'password' => '', 
    12         'options' => 'persistent' // persistent, debug, fetchmode, new 
     12        'options' => '' // persistent, debug, fetchmode, new 
    1313    ), 
    1414     
     
    2121        'user' => '', 
    2222        'password' => '', 
    23         'options' => 'persistent
     23        'options' => '
    2424    ), 
    2525     
     
    3535        'user' => '', 
    3636        'password' => '', 
    37         'options' => 'persistent
     37        'options' => '
    3838    ) 
    3939); 
  • trunk/config/boot.php

    r283 r290  
    3737    (!empty($akdb['options'])?'?'.$akdb['options']:''); 
    3838 
    39     require_once(AK_CONFIG_DIR.DS.AK_ENVIRONMENT.'.php'); 
     39    require_once(AK_CONFIG_DIR.DS.'environments'.DS.AK_ENVIRONMENT.'.php'); 
    4040} 
    4141