]> BookStack Code Mirror - bookstack/commitdiff
Config: Reverted change to cache directory
authorDan Brown <redacted>
Sat, 18 May 2024 19:40:26 +0000 (20:40 +0100)
committerDan Brown <redacted>
Sat, 18 May 2024 19:40:26 +0000 (20:40 +0100)
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

index 2ba16059a177629788598d3400b35fb6fae863ab..b588437ff1a0990a2597a9a5670b35b950ac395f 100644 (file)
@@ -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' => [