Skip to content
Advertisement

Laravel throws ‘The bootstrap/cache directory must be present and writable’ error after update

I used ‘composer update’, which updated a few packages. During the updating process the website still functions. However, after it says ‘The compiled services file has been removed’, the website doesn’t load and instead says:

Exception in ProviderRepository.php line 190:
The bootstrap/cache directory must be present and writable.

The weirdest thing is, when I run ‘composer update’ again, the website starts to work again, until the compiled services file is removed, at which point it throws the same error again. I have already tried the usual things that should be done when this error appears (chown -R everything to the right user/group and chmod all the files and folders 664 and 775 respectively).

I don’t know what to do anymore, as the error doesn’t seem ‘correct’..

Advertisement

Answer

Try this after you have run the composer update:

php artisan cache:clear
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement