I am using code iginiter. When I try running my application from a local browser then this error is throwing up.
Carabiner: cache path does not exist. Please set the cache path in config/carabiner.php.
I have no clue what it is. Tried some online similar solutions like :
http://www.webdevelopersdiary.com/1/archives/06-2012/1.html
but for some reason nothing seems to work. Please help me to come out of this.
Create cache directory specified in
config/carabiner.php, at line #50.Default setting:
$config['cache_dir'] = 'assets/cache/';Remember that
cache_dirpath is relative to document root (akaFCPATHfrom CI ; whereindex.phpis located). On initialization,FCPATHandcache_dirare concatenated, resultingcache_path.Excerpt from library:
$this->cache_path = $this->fcpath.$this->cache_dir;Update
You need to create
assets/cachedirectory, which is located in you application root, with write permissions:mkdir -p assets/cache && chmod -R 777 assets/cacheIn the end, it will look like this:
$ tree
.
|____application
|____assets
| |____cache
|____index.php
|____system
|____user_guide