Fuel\Core\Fuel_Exception [ Error ]: Database type not defined in fuel configuration
return array( 'active' => Config::get('environment'), Fuel::DEVELOPMENT => array( 'type' => 'mysql', 'connection' => array( 'hostname' => 'localhost', 'database' => 'fuel', 'username' => 'root', 'password' => '', 'persistent' => false, ), 'table_prefix' => '', 'charset' => 'utf8', 'caching' => false, 'profiling' => true, ), Fuel::PRODUCTION => array( 'type' => 'mysql', 'connection' => array( 'hostname' => 'localhost', 'database' => 'fuel', 'username' => 'root', 'password' => '', 'persistent' => false, ), 'table_prefix' => '', 'charset' => 'utf8', 'caching' => false, 'profiling' => false, ) );
'environment' => Fuel::DEVELOPMENT
return array( 'active' => 'development', 'development' => array( 'type' => 'mysql', 'connection' => array( 'hostname' => 'localhost', 'database' => 'fuel', 'username' => 'root', 'password' => 'mypashere', 'persistent' => false, ), 'table_prefix' => '', 'charset' => 'utf8', 'caching' => false, 'profiling' => true, ) );
Fuel\Core\Fuel_Exception [ Error ]: Database type not defined in development configuration
It looks like you're new here. If you want to get involved, click one of these buttons!