2
Try to update the Composer
php composer update
Another thing, give permissions to your "cache folder"
sudo chmod -R 755 storage bootstrap/cache
2
3
Try to update the Composer
php composer update
Another thing, give permissions to your "cache folder"
sudo chmod -R 755 storage bootstrap/cache
Browser other questions tagged php laravel
You are not signed in. Login or sign up in order to post.
Can you write to this directory? Does it exist? Try changing the location where your session is being stored session_save_path
– lazyFox
Have you tried using Laravel’s own session functions instead of PHP’s native ones?
– adrianosmateus