diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-28 14:54:50 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-28 14:54:50 +0100 |
commit | 2bb207d005850263ee4cc227d7b4ad147d6291e2 (patch) | |
tree | 015035732cf5d595d93f8e82a2706344b4be178f /check_setup.php | |
parent | d4293058364f6f13a7ce55373924b0a563918db0 (diff) | |
download | wallabag-2bb207d005850263ee4cc227d7b4ad147d6291e2.tar.gz wallabag-2bb207d005850263ee4cc227d7b4ad147d6291e2.tar.zst wallabag-2bb207d005850263ee4cc227d7b4ad147d6291e2.zip |
[fix] #483 pdo_sqlite not required if we want mysql / pgsql
Diffstat (limited to 'check_setup.php')
-rw-r--r-- | check_setup.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/check_setup.php b/check_setup.php index 96dd0f7d..2b84a744 100644 --- a/check_setup.php +++ b/check_setup.php | |||
@@ -13,16 +13,6 @@ if (version_compare(PHP_VERSION, '5.4.0', '<')) { | |||
13 | } | 13 | } |
14 | } | 14 | } |
15 | 15 | ||
16 | // Check PDO Sqlite | ||
17 | if (! extension_loaded('pdo_sqlite')) { | ||
18 | die('PHP extension required: pdo_sqlite'); | ||
19 | } | ||
20 | |||
21 | // Check ZIP | ||
22 | if (! extension_loaded('zip')) { | ||
23 | die('PHP extension required: zip'); | ||
24 | } | ||
25 | |||
26 | // Check if /cache is writeable | 16 | // Check if /cache is writeable |
27 | if (! is_writable('cache')) { | 17 | if (! is_writable('cache')) { |
28 | die('The directory "cache" must be writeable by your web server user'); | 18 | die('The directory "cache" must be writeable by your web server user'); |