Search found 3 matches

by Iago Calazans
20 Mar 2017, 04:43
Forum: Laravel package
Topic: Configuration parameter "adapter" missing in "db"
Replies: 7
Views: 7896

Re: Configuration parameter "adapter" missing in "db"

That can't be the solution :-/ Can you post your full ./config/shop.php file and the error message thrown by the "./artisan aimeos:setup" command? <?php return array( 'routes' => array( // 'login' => array('middleware' => ['web']), // 'admin' => array('middleware' => ['web', 'auth']), // ...
by Iago Calazans
14 Mar 2017, 22:18
Forum: Laravel package
Topic: Configuration parameter "adapter" missing in "db"
Replies: 7
Views: 7896

Re: Configuration parameter "adapter" missing in "db"

Did you add all necessary database configuration to your ./config/shop.php (adapter, host, port, database, username, password and stmts)? If yes, does it work if you remove the "env()" function and use only the literal strings? 'resource' => array( 'db' => array( 'adapter' => 'mysql', 'ho...
by Iago Calazans
14 Mar 2017, 16:04
Forum: Laravel package
Topic: Configuration parameter "adapter" missing in "db"
Replies: 7
Views: 7896

Re: Configuration parameter "adapter" missing in "db"

"Add your database configuration to your "./config/shop.php" file directly in this case" - nothing happens, receive the same message. In order to make it work for me, i had to pass the array['db'] values manually into the Multiple.php file. :shock: Before ...foreach( $dbconfig as...