diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-21 14:45:39 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-21 14:45:39 +0100 |
commit | 19875ef0dad9999f91e6f8d780756e402b5e6722 (patch) | |
tree | 169b887df1bf71f7ceb0be54447b11be8765e431 /web/index.php | |
parent | 00fcfd299b7a1aa5177c97d2b13c0d9d587678e5 (diff) | |
download | wallabag-19875ef0dad9999f91e6f8d780756e402b5e6722.tar.gz wallabag-19875ef0dad9999f91e6f8d780756e402b5e6722.tar.zst wallabag-19875ef0dad9999f91e6f8d780756e402b5e6722.zip |
add install script after composer install
Diffstat (limited to 'web/index.php')
-rw-r--r-- | web/index.php | 5 |
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'); | |||
13 | use Wallabag\Wallabag\Wallabag; | 13 | use Wallabag\Wallabag\Wallabag; |
14 | 14 | ||
15 | require_once '../app/check_essentials.php'; | 15 | require_once '../app/check_essentials.php'; |
16 | require_once '../app/check_setup.php'; | ||
17 | require_once '../app/config/global.inc.php'; | 16 | require_once '../app/config/global.inc.php'; |
18 | 17 | ||
19 | // Check if /cache is writeable | 18 | // Check if /cache is writable |
20 | if (! is_writable(CACHE)) { | 19 | if (! 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 | ||
24 | Session::$sessionName = 'wallabag'; | 23 | Session::$sessionName = 'wallabag'; |