entrust
entrust copied to clipboard
This cache store does not support tagging.
I seem to get this in Laravel 5.2. Any ideas on how to fix this?
use redis or memcached
This is not a bug, file
and database
drivers do not support tags as documented in the official Laravel documentation. See https://laravel.com/docs/5.2/cache#cache-tags
Please close this issue.
please modify .env set CACHE_DRIVER=array works to me
when I set CACHE_DRIVER=array
,JWT-Auth does't work
@gamelife1314 +1
Was having this issue until I set both my CACHE_DRIVER
and SESSION_DRIVER
to redis
.
I have solved this issue in my fork of this package you could take a look at it
Using the latest version and changing in .env CACHE_DRIVER=array
and then executing php artisan config:cache
worked for me!
if you use DingoAPI,JWT set CACHE_DRIVER=array
,JWT does't work . so i just set CACHE_DRIVER=redis
then php artisan config:cache
it works!
Use version "dev-laravel-5" in your composer.json as in #422
i installed memcached and it solved the problem
php artisan migrate:rollback
phpbrew use 5.6.16
apt-get install libmemcached-dev memcached
phpbrew extension install memcached
phpbrew fpm restart
php artisan config:cache
and change CACHE_DRIVER in /config/cache.php to memcached, than
php artisan migrate
I have two questions:
- CACHE_DRIVER=array can not reduce performance ?
- Is there any way to provide default all permission for root user.(root user has no permissions in db, but it will give default all permission) ?
thank @gamelife1314 it's good work for me !!!