aboutsummaryrefslogblamecommitdiffhomepage
path: root/check_setup.php
blob: cf02c34baeacffc8cfc673c4b31c9a6ca69119e7 (plain) (tree)
1
2
3
4
5
6
7

     




                                                                           




                                                         
<?php

// Check if /cache is writeable
if (! is_writable('cache')) {
    die('The directory "cache" must be writeable by your web server user');
}

// install folder still present, need to install wallabag
if (is_dir('install')) {
    require('install/index.php');
    exit;
}