Fixed core.php

This commit is contained in:
Karl Cordes 2015-06-02 00:04:22 +10:00
parent 8584bb96b6
commit ce3d605ae1

View file

@ -71,13 +71,13 @@ if($host == 'cmc.lan' || $host == '192.168.0.7') {
}
else { //Development config
$basedir = '/home/karlcordes/Sites/CMC-Sales/app/';
$basedir = '/home/cmc/cmc-sales/app/';
Cache::config('default', array(
'engine' => 'File', //[required]
'duration'=> 3600, //[optional]
'probability'=> 100, //[optional]
'path' => '/Users/karlcordes/CMC-Sales/app/tmp/', //[optional] use system tmp directory - remember to use absolute path
'path' => '/home/cmc/cmc-sales/app/tmp/', //[optional] use system tmp directory - remember to use absolute path
'prefix' => 'cake_', //[optional] prefix every cache file with this string
'lock' => false, //[optional] use file locking
'serialize' => true,