Kohana_Exception [0]:目录APPPATH \ cache必须是可写的帮助

时间:2014-11-19 12:57:29

标签: php

使用Kohana创建的网站显示错误" Kohana_Exception [0]:目录APPPATH \ cache必须是可写的"出现。

我正在使用带有XAMPP的Windows 7,并且不知道该怎么做。

SYSPATH \ classes \ kohana \ core.php [281]

            Kohana::$cache_dir = APPPATH.'cache';
        }

        if ( ! is_writable(Kohana::$cache_dir))
        {
            throw new Kohana_Exception('Directory :dir must be writable',
                array(':dir' => Debug::path(Kohana::$cache_dir)));
        }

        if (isset($settings['cache_life']))
        {

2 个答案:

答案 0 :(得分:0)

已经回答here

检查文件是否确实存在(应用程序/缓存),此文件夹与Kohana一起为空,某些版本控制系统和其他软件通常会删除并忽略空文件夹。如果它不存在,创建文件夹并在其中插入一个空白文件(即empty.txt)如果错误仍然存​​在,则给出相应的权限。

答案 1 :(得分:0)

我和你的问题差不多,我已经有了答案here

基本上是@dinhokz回答

的一步一步程序