From 5651d2c43d3e5e1ba34b74d566b017c45921f069 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sat, 18 May 2024 20:40:26 +0100 Subject: [PATCH] Config: Reverted change to cache directory Change made during Laravel 10 updates to align (Laravel made this change much earlier in 5.x series) but it caused issues due to folder not pre-existing and due to potentiall permission issues. (CLI could create this during update, with non-compatible permissions for webserver). For #4999 --- app/Config/cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Config/cache.php b/app/Config/cache.php index 2ba16059a..b588437ff 100644 --- a/app/Config/cache.php +++ b/app/Config/cache.php @@ -53,8 +53,8 @@ return [ 'file' => [ 'driver' => 'file', - 'path' => storage_path('framework/cache/data'), - 'lock_path' => storage_path('framework/cache/data'), + 'path' => storage_path('framework/cache'), + 'lock_path' => storage_path('framework/cache'), ], 'memcached' => [