aboutsummaryrefslogtreecommitdiffhomepage
path: root/web
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-21 14:45:39 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-21 14:45:39 +0100
commit19875ef0dad9999f91e6f8d780756e402b5e6722 (patch)
tree169b887df1bf71f7ceb0be54447b11be8765e431 /web
parent00fcfd299b7a1aa5177c97d2b13c0d9d587678e5 (diff)
downloadwallabag-19875ef0dad9999f91e6f8d780756e402b5e6722.tar.gz
wallabag-19875ef0dad9999f91e6f8d780756e402b5e6722.tar.zst
wallabag-19875ef0dad9999f91e6f8d780756e402b5e6722.zip
add install script after composer install
Diffstat (limited to 'web')
-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';