Open mzch opened 4 years ago
I have the same problem
Have anyone solved the problem who can help me?
I was able to solve the problem. You need to remove the dependency waavi/translation This conflicts with joedixon/laravel-translation
I was able to solve the problem. You need to remove the dependency waavi/translation This conflicts with joedixon/laravel-translation
hello, how did you remove it?
You can remove the waavi/translation package by running.
composer remove "waavi/translation"
. Also make sure to remove the package serviceprovider in the config/app.php file.
Waavi\Translation\TranslationServiceProvider::class,
.
You can comment that class out if you don't want to remove it. After that, you can now run migrations and all should be good
When I ran
php artisan migrate
, the following error occurred.How can I fix this?
OS: Debian 10.4
PHP: 7.3.14
.env
LOG_CHANNEL=stack
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laraveldrive DB_USERNAME=laraveldrive DB_PASSWORD=password
BROADCAST_DRIVER=log CACHE_DRIVER=file SESSION_DRIVER=file SESSION_LIFETIME=120 QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379
MAIL_DRIVER=smtp MAIL_HOST=mx1.mail-services.net MAIL_PORT=587 MAIL_USERNAME=admin@example.com MAIL_PASSWORD=password MAIL_ENCRYPTION=tls
PUSHER_APP_ID= PUSHER_APP_KEY= PUSHER_APP_SECRET= PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
FACEBOOK_CLIENT_ID=null FACEBOOK_CLIENT_SECRET=null FACEBOOK_REDIRECT_URI=http://example.com/login/handle/facebook/
TWITTER_CLIENT_ID=null TWITTER_CLIENT_SECRET=null TWITTER_REDIRECT_URI=http://example.com/login/handle/twiter/
GOOGLE_CLIENT_ID=null GOOGLE_CLIENT_SECRET=null GOOGLE_REDIRECT_URI=http://example.com/login/handle/google/
GITHUB_CLIENT_ID=null GITHUB_CLIENT_SECRET=null GITHUB_REDIRECT_URI=http://example.com/login/handle/github/
YOUTUBE_CLIENT_ID=null YOUTUBE_CLIENT_SECRET=null YOUTUBE_REDIRECT_URI=http://example.com/login/handle/youtube/
TWITCH_CLIENT_ID=null TWITCH_CLIENT_SECRET=null TWITCH_REDIRECT_URI=http://example.com/login/handle/twitch/
INSTAGRAM_CLIENT_ID=null INSTAGRAM_CLIENT_SECRET=null INSTAGRAM_REDIRECT_URI=http://example.com/login/handle/instagram/