diff options
author | Maryana Rozhankivska <mariroz@mr.lviv.ua> | 2014-08-21 17:17:36 +0300 |
---|---|---|
committer | Maryana Rozhankivska <mariroz@mr.lviv.ua> | 2014-08-21 17:17:36 +0300 |
commit | 211068ce504c48ee95e742a12ec04f16f3988c6c (patch) | |
tree | 426e29031e9b4dd431326a7fc2210a35c2e21b76 /check_setup.php | |
parent | 70549136ba0ba5692448a079b6911cf8bb52cbee (diff) | |
download | wallabag-211068ce504c48ee95e742a12ec04f16f3988c6c.tar.gz wallabag-211068ce504c48ee95e742a12ec04f16f3988c6c.tar.zst wallabag-211068ce504c48ee95e742a12ec04f16f3988c6c.zip |
vendor dir is not accessible before install, sqlite db dir write check moved into db class
Diffstat (limited to 'check_setup.php')
-rwxr-xr-x[-rw-r--r--] | check_setup.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/check_setup.php b/check_setup.php index 7e378b15..cf02c34b 100644..100755 --- a/check_setup.php +++ b/check_setup.php | |||
@@ -5,11 +5,6 @@ if (! is_writable('cache')) { | |||
5 | die('The directory "cache" must be writeable by your web server user'); | 5 | die('The directory "cache" must be writeable by your web server user'); |
6 | } | 6 | } |
7 | 7 | ||
8 | // Check if /db is writeable | ||
9 | if (! is_writable('db') && STORAGE === 'sqlite') { | ||
10 | die('The directory "db" must be writeable by your web server user'); | ||
11 | } | ||
12 | |||
13 | // install folder still present, need to install wallabag | 8 | // install folder still present, need to install wallabag |
14 | if (is_dir('install')) { | 9 | if (is_dir('install')) { |
15 | require('install/index.php'); | 10 | require('install/index.php'); |