我无法想出这个...这意味着它必须是一个简单的,对吧?!
问题:Cake没有将文件写入文件缓存。
配置:
//app/Config/core.php
Configure::write('debug', 0);
Configure::write('Cache.disable', true);
Configure::write('Cache.check', true);
//app/Config/bootstrap.php
Cache::config('default', array('engine' => 'File'));
//app/Controller/CategoriesController.php, 'view' method:
public function view($id = null) {
$this->helpers[] = 'Format';
$this->helpers[] = 'Cache';
$this->cacheAction = "3600";
....
}
app / tmp / cache / *上的perms是0777. world worldable。
但仍然没有写入缓存的文件....我错过了什么?
DJC
答案 0 :(得分:4)
Configure::write('Cache.disable', true);
您不知道为什么没有写入缓存...?