summaryrefslogtreecommitdiffstats
path: root/settings
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 /settings
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 'settings')
-rw-r--r--settings/templates/admin.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 65c6359e509..5a9bb852590 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -114,8 +114,18 @@ if ($_['databaseOverload']) {
<div class="section">
<h2><?php p($l->t('Database Performance Info'));?></h2>
- <p class="securitywarning">
- <?php p($l->t('SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: \'occ db:convert-type\'')); ?>
+ <p>
+ <strong>
+ <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?>
+ </strong>
+ </p>
+ <p>
+ <strong>
+ <?php p($l->t('Especially when using desktop client for file syncing the use of sqlite is highly discouraged.')); ?>
+ </strong>
+ </p>
+ <p>
+ <?php p($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\'')); ?>
</p>
</div>