I searched in every question for the answer to this question, but did not find anything! This is an error when I enter localhost / cakephp:
Notice (8): Undefined index: datasource [CORE\Cake\Model\ConnectionManager.php, line 258]
Another mistake:
Cake is NOT able to connect to the database.
Could not find Datasource class.
This is my configuration in database.php:
<?php class DATABASE_CONFIG { var $default = array('driver' => 'mysql', 'persistent' => false, 'database' => '', 'host' => 'localhost', 'login' => 'lorizz', 'password' => 'reyxD22!', 'database' => 'my_cakephp_project', 'prefix' => ''); var $test = array('driver' => 'mysql', 'persistent' => false, 'database' => '', 'host' => 'localhost', 'login' => 'lorizz', 'password' => 'reyxD22!', 'database' => 'my_cakephp_project', 'prefix' => ''); } ?>
Any answer?
source share