tracker icon indicating copy to clipboard operation
tracker copied to clipboard

Not compat with laravel 7

Open Shakeboxing opened this issue 5 years ago • 7 comments

Was wondering if you're going to push an update to Laravel 7 or are you taking PR?

"laravel/framework": "~4|~5|~6|~7",

Shakeboxing avatar Mar 07 '20 16:03 Shakeboxing

pragmarx/support needs update too.

saulens22 avatar Mar 09 '20 09:03 saulens22

I confirm this problem

изображение

nepster-web avatar Mar 18 '20 22:03 nepster-web

i have this issue too

dharmendrashah avatar Apr 10 '20 15:04 dharmendrashah

Pull requests are most welcome

napestershine avatar Apr 11 '20 11:04 napestershine

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 avatar May 31 '20 11:05 viveksudalai

@viveksudalai

try it:

[ 'host' => '127.0.0.1', 'engine' => 'InnoDB', ]

MehdiFaridkia avatar Jun 07 '20 14:06 MehdiFaridkia

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, ],

saulens22 avatar Jun 09 '20 12:06 saulens22