summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorMarius Blüm <marius@lineone.io>2019-03-14 13:56:09 +0100
committerGitHub <noreply@github.com>2019-03-14 13:56:09 +0100
commit6ff79d4908c35594e6c5926919cd2a7d59266e7a (patch)
tree7161b7016c2424b66ef4d68fbb718abd19e08791 /core/templates
parent762a8bb3d9521a9f75d9e186150cb77241b3bc19 (diff)
downloadnextcloud-server-6ff79d4908c35594e6c5926919cd2a7d59266e7a.tar.gz
nextcloud-server-6ff79d4908c35594e6c5926919cd2a7d59266e7a.zip
Using SQLite should sound more scary 😈
- According to our administrator manual we should mention limitation to minimal and development/testing instances Signed-off-by: Marius Blüm <marius@lineone.io>
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/installation.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 6dd7ed31382..88be253949f 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -153,9 +153,10 @@ script('core', [
<?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?>
<fieldset id="sqliteInformation" class="warning">
<legend><?php p($l->t('Performance warning'));?></legend>
- <p><?php p($l->t('SQLite will be used as database.'));?></p>
- <p><?php p($l->t('For larger installations we recommend to choose a different database backend.'));?></p>
- <p><?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?></p>
+ <p><?php p($l->t('You have choosen SQLite as database.'));?></p>
+ <p><?php p($l->t('SQLite should only be choosen for minimal and development instances.'));?></p>
+ <p><?php p($l->t('For productive instances we recommend to choose a different database backend.'));?></p>
+ <p><?php p($l->t('Using clients for file syncing the use of SQLite is highly discouraged.')); ?></p>
</fieldset>
<?php endif ?>