Skip to content

Commit 5651d2c

Browse files
committed
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
1 parent fc236f9 commit 5651d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Config/cache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353

5454
'file' => [
5555
'driver' => 'file',
56-
'path' => storage_path('framework/cache/data'),
57-
'lock_path' => storage_path('framework/cache/data'),
56+
'path' => storage_path('framework/cache'),
57+
'lock_path' => storage_path('framework/cache'),
5858
],
5959

6060
'memcached' => [

0 commit comments

Comments
 (0)