]>
Commit | Line | Data |
---|---|---|
792097fb NL |
1 | <?php |
2 | ||
792097fb NL |
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 | ||
792097fb NL |
8 | // install folder still present, need to install wallabag |
9 | if (is_dir('install')) { | |
10 | require('install/index.php'); | |
11 | exit; | |
12 | } |