'Pluf_Template_Tag_Url', ); // Default database configuration. The database defined here will be // directly accessible from Pluf::db() of course it is still possible // to open any other number of database connections through Pluf_DB $cfg['db_login'] = ''; $cfg['db_password'] = ''; $cfg['db_server'] = ''; $cfg['db_database'] = $cfg['tmp_folder'].'/todo.db'; // Must be shared by all the installed_apps and the core framework. // That way you can have several installations of the core framework. $cfg['db_table_prefix'] = 'pluf_testapp_'; // Starting version 4.1 of MySQL the utf-8 support is "correct". // The reason of the db_version for MySQL is only for that. $cfg['db_version'] = ''; $cfg['db_engine'] = 'SQLite'; return $cfg;