Changeset 4985 for trunk/include


Ignore:
Timestamp:
Feb 27, 2010, 9:00:00 PM (14 years ago)
Author:
nikrou
Message:

Feature 1460 : Customize form installation depending on database engine

  • sqlite is proposed by default if severals

database engine are available (cf conf)

  • sqlite is proposed before pdo-sqlite
  • remove host, user and password for sqlite
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r4966 r4985  
    520520  'email' => 'mail_address'
    521521  );
     522
     523// database engine default choice between sqlite (native or via pdo)
     524// if the twice are available.
     525// $conf['db_sqlite_default'] = 'pdo';
     526$conf['db_sqlite_default'] = 'native';
     527
     528// default database engine proposed if severals are available
     529// choices : sqlite, mysql, pgsql, pdo-sqlite
     530// see include/dblayer/dblayers.inc.php
     531$conf['dbengine_select_default'] = 'sqlite';
    522532
    523533// pass_convert : function to crypt or hash the clear user password to store
Note: See TracChangeset for help on using the changeset viewer.