EVO: if /data/cache not exist then create it
parent
d12484b33b
commit
49a2451cad
|
@ -13,6 +13,9 @@ $datapath = "data";
|
||||||
if( ! empty($appconfdir) ){
|
if( ! empty($appconfdir) ){
|
||||||
$confpaths[] = $appconfdir.'/local.php';
|
$confpaths[] = $appconfdir.'/local.php';
|
||||||
$datapath = $appconfdir.'/data';
|
$datapath = $appconfdir.'/data';
|
||||||
|
if(!is_dir($datapath.'/cache')){
|
||||||
|
mkdir($datapath.'/cache');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return array(
|
return array(
|
||||||
'modules' => array(
|
'modules' => array(
|
||||||
|
|
Loading…
Reference in New Issue