1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

add install script after composer install

This commit is contained in:
Nicolas Lœuillet 2015-01-21 14:45:39 +01:00
parent 00fcfd299b
commit 19875ef0da
16 changed files with 89 additions and 913 deletions

View file

@ -13,12 +13,11 @@ define ('WALLABAG', '2.0.0-alpha');
use Wallabag\Wallabag\Wallabag;
require_once '../app/check_essentials.php';
require_once '../app/check_setup.php';
require_once '../app/config/global.inc.php';
// Check if /cache is writeable
// Check if /cache is writable
if (! is_writable(CACHE)) {
die('The directory ' . CACHE . ' must be writeable by your web server user');
die('The directory ' . CACHE . ' must be writable by your web server user');
}
Session::$sessionName = 'wallabag';