Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not compat with laravel 7 #488

Open
Shakeboxing opened this issue Mar 7, 2020 · 7 comments
Open

Not compat with laravel 7 #488

Shakeboxing opened this issue Mar 7, 2020 · 7 comments

Comments

@Shakeboxing
Copy link

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

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

@saulens22
Copy link

pragmarx/support needs update too.

@nepster-web
Copy link

I confirm this problem

изображение

@dharmendrashah
Copy link

i have this issue too

@napestershine
Copy link
Collaborator

Pull requests are most welcome

@viveksudalai
Copy link

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

@MehdiFaridkia
Copy link

@viveksudalai

try it:

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

@saulens22
Copy link

saulens22 commented Jun 9, 2020

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants