From b912b30d119754b36c953ac96fd03e7a6bb03c7c Mon Sep 17 00:00:00 2001 From: claudex Date: Fri, 10 Mar 2017 14:58:53 +0100 Subject: [PATCH 1/2] Adapt Apache config to 2.4 version --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ad2792b..f7424e3 100644 --- a/README.md +++ b/README.md @@ -129,8 +129,7 @@ project and you should be ready to go! It should look something like below: DirectoryIndex index.php AllowOverride All - Order allow,deny - Allow from all + Require all granted From a53ccf75f86b888e398d39ba28fc1d0219afeb0e Mon Sep 17 00:00:00 2001 From: Thomas Metois Date: Tue, 11 Apr 2017 10:13:26 +0200 Subject: [PATCH 2/2] EVO: if /data/cache not exist then create it --- config/application.config.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/application.config.php b/config/application.config.php index b8eb04c..1898813 100644 --- a/config/application.config.php +++ b/config/application.config.php @@ -13,6 +13,9 @@ $datapath = "data"; if( ! empty($appconfdir) ){ $confpaths[] = $appconfdir.'/local.php'; $datapath = $appconfdir.'/data'; + if(!is_dir($datapath.'/cache')){ + mkdir($datapath.'/cache'); + } } return array(