当前位置: 编程技术>php
Codeigniter出现错误提示Error with CACHE directory的解决方案
来源: 互联网 发布时间:2014-08-26
本文导语: Codeigniter项目访问时如果出现如下错误提示: Error with CACHE directory. 检查一下cache目录的权限,就会发现 drwxr-xr-x 3 root root 4096 Mar 1 13:53 cache 这时候只要将其改为可读写, # chmod 777 cache 问题解决。
Codeigniter项目访问时如果出现如下错误提示:
Error with CACHE directory.
检查一下cache目录的权限,就会发现
drwxr-xr-x 3 root root 4096 Mar 1 13:53 cache
这时候只要将其改为可读写,
# chmod 777 cache
问题解决。