// specific configuration settings for database based sessions 'db' => array( 'cookie_name' => 'fueldid', // name of the session cookie for database based sessions 'database' => null, // name of the database name (as configured in config/db.php) 'table' => 'sessions', // name of the sessions table 'gc_probability' => 5 // probability % (between 0 and 100) for garbage collection ),
array( 'cookie_name' => 'fueldid', 'database' => 'dev', 'table' => 'sessions', 'gc_probability' => 5 )
// The name of this database instance is Fuel::DEVELOPMENT ! Fuel::DEVELOPMENT => array( 'type' => 'mysql', 'connection' => array( 'hostname' => 'localhost', 'database' => 'DEV_dbname', 'username' => 'user', 'password' => 'pass', 'persistent' => false, ), 'table_prefix' => 'core_', 'charset' => 'utf8', 'caching' => false, 'profiling' => false, ),
It looks like you're new here. If you want to get involved, click one of these buttons!