summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorBernhard Posselt <Raydiation@users.noreply.github.com>2015-02-05 13:07:56 +0100
committerBernhard Posselt <Raydiation@users.noreply.github.com>2015-02-05 13:07:56 +0100
commit7a9d428d6f6146d44883e2c5bab04db702792ce4 (patch)
treed0a76ac205a9caf8ae62d320f09fe53f114306e0 /core
parent59f54822f054598c8ed331902635ed2650eb6b50 (diff)
parentf86c73c9f605db4fe77060fd89e23d412c5e4c77 (diff)
downloadnextcloud-server-7a9d428d6f6146d44883e2c5bab04db702792ce4.tar.gz
nextcloud-server-7a9d428d6f6146d44883e2c5bab04db702792ce4.zip
Merge pull request #13907 from owncloud/enhance-sqlite-warning
enhance sqlite warning on admin page as well as during setup
Diffstat (limited to 'core')
-rw-r--r--core/templates/installation.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 0b3b0d46c5c..e5e191e8978 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -154,7 +154,12 @@ script('core', [
<?php endif; ?>
<?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?>
- <p id="sqliteInformation" class="info"><?php p($l->t('SQLite will be used as database. For larger installations we recommend to change this.'));?></p>
+ <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 desktop client for file syncing the use of sqlite is highly discouraged.')); ?></p>
+ </fieldset>
<?php endif ?>
<div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>" /></div>