]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
help when sqlite file not found
authorNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Fri, 20 Sep 2013 09:25:44 +0000 (11:25 +0200)
committerNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Fri, 20 Sep 2013 09:25:44 +0000 (11:25 +0200)
inc/poche/Poche.class.php

index 67fbd5290d7927247cfe1708f3f8479d28c4724b..18860ddc67bbe6fb71e94726c2d238d0fc19acd0 100644 (file)
@@ -150,7 +150,7 @@ class Poche
             $msg = '<h1>error</h1><p>You don\'t have write access on cache directory.</p>';
         } else if (STORAGE == 'sqlite' && ! file_exists(STORAGE_SQLITE)) {
             Tools::logm('sqlite file doesn\'t exist');
-            $msg = '<h1>error</h1><p>sqlite file doesn\'t exist, you can find it in install folder.</p>';
+            $msg = '<h1>error</h1><p>sqlite file doesn\'t exist, you can find it in install folder. Copy it in /db folder.</p>';
         } else if (file_exists(ROOT . '/install/update.php') && ! DEBUG_POCHE) {
             $msg = '<h1>setup</h1><p><strong>It\'s your first time here?</strong> Please copy /install/poche.sqlite in db folder. Then, delete install folder.<br /><strong>If you have already installed poche</strong>, an update is needed <a href="install/update.php">by clicking here</a>.</p>';
         } else if (is_dir(ROOT . '/install') && ! DEBUG_POCHE) {