浏览文章

文章信息

Uncaught Zend_Cache_Exception: cache_dir "***" is not writable in 16479

1、报错

Uncaught Zend_Cache_Exception: cache_dir "/www/wwwroot/demo.com/var/cache/" is not writable in


2、原因

项目根目录下的缓存目录不可写

缓存目录:./var/

3、解决

chmod -R 777 ./var/

原创