tracker
tracker copied to clipboard
Not compat with laravel 7
Was wondering if you're going to push an update to Laravel 7 or are you taking PR?
"laravel/framework": "~4|~5|~6|~7",
pragmarx/support needs update too.
I confirm this problem

i have this issue too
Pull requests are most welcome
I am tried to use this package in laravel 7. Currently i am facing database migration issue. User and password_resets table are only created while doing migration after that i am getting Database is not configured.
My Database Configuration as follows 'mysql' => [ 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'tracker', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => 'tracker_', 'strict' => false, 'engine' => null, ],
Error : Migrating : 2015_03_07_31_10_70_create_tracker_paths_table InvalidArgumentException : database [tracker] is not configured
@viveksudalai
try it:
[ 'host' => '127.0.0.1', 'engine' => 'InnoDB', ]
I am tried to use this package in laravel 7. Currently i am facing database migration issue. User and password_resets table are only created while doing migration after that i am getting Database is not configured.
My Database Configuration as follows 'mysql' => [ 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'tracker', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => 'tracker_', 'strict' => false, 'engine' => null, ],
Error : Migrating : 2015_03_07_31_10_70_create_tracker_paths_table InvalidArgumentException : database [tracker] is not configured
It should be: 'mysql' => [ 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'mydata', // or any other database 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => 'tracker_', 'strict' => false, 'engine' => null, ], 'tracker' => [ // tracker needs this 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'tracker', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => 'tracker_', 'strict' => false, 'engine' => null, ],