From 850e0d55ced731628f46ad7fba40e650d052f063 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Sun, 31 Aug 2025 07:55:39 +0000 Subject: [PATCH] Fix configuration option --- app/config/app.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/config/app.php b/app/config/app.php index 50b0a7ce7..974c4a67b 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -134,13 +134,13 @@ * Duration will be set to '+2 minutes' in bootstrap.php when debug = true * If you set 'className' => 'Null' core cache will be disabled. */ - '_cake_core_' => [ + '_cake_translations_' => [ 'className' => 'Cake\Cache\Engine\FileEngine', - 'prefix' => 'myapp_cake_core_', + 'prefix' => 'myapp_cake_translations_', 'path' => CACHE . 'persistent/', 'serialize' => true, 'duration' => '+1 years', - 'url' => env('CACHE_CAKECORE_URL', null), + 'url' => env('CACHE_TRNASLATIONS_URL', null), ], /**