お世話になっております。
Warning: cake_core cache was unable to write 'cake_dev_ja' to File cache in /var/www/html/cakephp-2.6.3/lib/Cake/Cache/Cache.php on line 328
Warning: /var/www/html/cakephp-2.6.3/app/tmp/cache/persistent/ is not writable in /var/www/html/cakephp-2.6.3/lib/Cake/Cache/Engine/FileEngine.php on line 385
Fatal error: Uncaught exception 'CacheException' with message 'Cache engine "cake_core" is not properly configured. Ensure required extensions are installed, and credentials/permissions are correct' in /var/www/html/cakephp-2.6.3/lib/Cake/Cache/Cache.php:186 Stack trace: #0 /var/www/html/cakephp-2.6.3/lib/Cake/Cache/Cache.php(151): Cache::_buildEngine('cake_core') #1 /var/www/html/cakephp-2.6.3/app/Config/core.php(375): Cache::config('cake_core', Array) #2 /var/www/html/cakephp-2.6.3/lib/Cake/Core/Configure.php(72): include('/var/www/html/c...') #3 /var/www/html/cakephp-2.6.3/lib/Cake/bootstrap.php(175): Configure::bootstrap(true) #4 /var/www/html/cakephp-2.6.3/app/webroot/index.php(100): include('/var/www/html/c...') #5 {main} thrown in /var/www/html/cakephp-2.6.3/lib/Cake/Cache/Cache.php on line 186
tmp/以下のパーミッションを777に変更して
core.php
Cache::config('cake_core', array(
'engine' => $engine,
'prefix' => $prefix . 'cake_core_',
'path' => CACHE . 'persistent' . DS,
'serialize' => ($engine === 'File'),
'duration' => $duration,
'mask' => 0777,
));
Cache::config('cake_model', array(
'engine' => $engine,
'prefix' => $prefix . 'cake_model_',
'path' => CACHE . 'models' . DS,
'serialize' => ($engine === 'File'),
'duration' => $duration,
'mask' => 0777,
));
'mask' => 0777を追加。
上記の2つを行いましたがエラーが消えません。
ご助言いただけると助かります。
よろしくお願いいたします。

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2015/05/24 15:23
2015/05/25 16:17
2015/05/26 03:55
2015/10/29 02:25 編集