aboutsummaryrefslogtreecommitdiffhomepage
path: root/web/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/index.php')
-rw-r--r--web/index.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/web/index.php b/web/index.php
index 84e49eb1..ac361181 100644
--- a/web/index.php
+++ b/web/index.php
@@ -13,12 +13,11 @@ define ('WALLABAG', '2.0.0-alpha');
13use Wallabag\Wallabag\Wallabag; 13use Wallabag\Wallabag\Wallabag;
14 14
15require_once '../app/check_essentials.php'; 15require_once '../app/check_essentials.php';
16require_once '../app/check_setup.php';
17require_once '../app/config/global.inc.php'; 16require_once '../app/config/global.inc.php';
18 17
19// Check if /cache is writeable 18// Check if /cache is writable
20if (! is_writable(CACHE)) { 19if (! is_writable(CACHE)) {
21 die('The directory ' . CACHE . ' must be writeable by your web server user'); 20 die('The directory ' . CACHE . ' must be writable by your web server user');
22} 21}
23 22
24Session::$sessionName = 'wallabag'; 23Session::$sessionName = 'wallabag';