]> git.immae.eu Git - github/wallabag/wallabag.git/blame - check_setup.php
@fivefilters via composer
[github/wallabag/wallabag.git] / check_setup.php
CommitLineData
792097fb
NL
1<?php
2
792097fb
NL
3// Check if /cache is writeable
4if (! is_writable('cache')) {
5 die('The directory "cache" must be writeable by your web server user');
6}
7
792097fb
NL
8// install folder still present, need to install wallabag
9if (is_dir('install')) {
10 require('install/index.php');
11 exit;
12}