aboutsummaryrefslogtreecommitdiffhomepage
path: root/check_setup.php
diff options
context:
space:
mode:
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-08-21 17:17:36 +0300
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-08-21 17:17:36 +0300
commit211068ce504c48ee95e742a12ec04f16f3988c6c (patch)
tree426e29031e9b4dd431326a7fc2210a35c2e21b76 /check_setup.php
parent70549136ba0ba5692448a079b6911cf8bb52cbee (diff)
downloadwallabag-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.php5
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
9if (! 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
14if (is_dir('install')) { 9if (is_dir('install')) {
15 require('install/index.php'); 10 require('install/index.php');