Fuel\Core\FuelException [ Error ]: Database type not defined in fueldepo configuration
Database type not defined in fueldepo configuration COREPATH/classes/database/connection.php @ line 65 60 $config = \Config::get("db.{$name}"); 61 } 62 63 if ( ! isset($config['type'])) 64 { 65 throw new \FuelException("Database type not defined in {$name} configuration"); 66 } 67 68 // Set the driver class name 69 $driver = '\\Database_' . ucfirst($config['type']) . '_Connection'; 70
i tried these configurations but seems to not work, although i was able to update the database through oil migrate using the first configuration.
a few minutes after, i was able to make it work. i updated session.php and set the db property's 'database' => 'default'. 'default' is the name of the active database configuration(db.php). now browsing the depo ;).