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