From 0278e07db86944ecd947e85769ca65fdcb2ab6d7 Mon Sep 17 00:00:00 2001 From: Codeliner Date: Sun, 2 Mar 2014 19:00:23 +0100 Subject: [PATCH] Cleanup after debugging --- README.md | 2 +- docs/installation.md | 8 +++++++- public/index.php | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7f8e74..81c8919 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ and let us focus on the Domain Driven Design implementation. Both can be replace The original cargo sample written in java can be found [here](http://dddsample.sourceforge.net/). -[> Instalation](https://github.com/codeliner/php-ddd-cargo-sample/blob/master/docs/installation.md) +[> Installation](https://github.com/codeliner/php-ddd-cargo-sample/blob/master/docs/installation.md) Goal of the Project ------------------- diff --git a/docs/installation.md b/docs/installation.md index 322b9f8..1742d09 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -42,4 +42,10 @@ project and you should be ready to go! It should look something like below: Order allow,deny Allow from all - \ No newline at end of file + + + +Permissions +----------- + +The application needs write access for the `data/` dir and all sub folders. \ No newline at end of file diff --git a/public/index.php b/public/index.php index 9d7c2b6..52ccfab 100644 --- a/public/index.php +++ b/public/index.php @@ -5,6 +5,7 @@ */ chdir(dirname(__DIR__)); +//we activate full error reporting for our sample, to ease support error_reporting(E_ALL); ini_set('display_errors', 1);