X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=check_setup.php;h=cf02c34baeacffc8cfc673c4b31c9a6ca69119e7;hb=c78c1a3f08815aab99752026ccdf1dcf63cf43c1;hp=96dd0f7d4741bd9ca6128c642cfcdeb661208806;hpb=792097fb6a6507201ec41f90201ad05ad8c38870;p=github%2Fwallabag%2Fwallabag.git diff --git a/check_setup.php b/check_setup.php old mode 100644 new mode 100755 index 96dd0f7d..cf02c34b --- a/check_setup.php +++ b/check_setup.php @@ -1,38 +1,10 @@ "short_open_tag = On"'); - } -} - -// Check PDO Sqlite -if (! extension_loaded('pdo_sqlite')) { - die('PHP extension required: pdo_sqlite'); -} - -// Check ZIP -if (! extension_loaded('zip')) { - die('PHP extension required: zip'); -} - // Check if /cache is writeable if (! is_writable('cache')) { die('The directory "cache" must be writeable by your web server user'); } -// Check if /db is writeable -if (! is_writable('db')) { - die('The directory "db" must be writeable by your web server user'); -} - // install folder still present, need to install wallabag if (is_dir('install')) { require('install/index.php');