diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-26 18:15:22 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-26 18:15:22 +0100 |
commit | b95139e5b24b64abbb00110ccf0f7ca30fb036af (patch) | |
tree | ebe5d3d1c230117817bd2d6a7636a3f823a30fa9 | |
parent | e3d60ee5b0b3bd6dab9a8067861c11131599b0a1 (diff) | |
parent | 82fc754d3f8bbce98b38e23cb8775e89d8b203c5 (diff) | |
download | nextcloud-server-b95139e5b24b64abbb00110ccf0f7ca30fb036af.tar.gz nextcloud-server-b95139e5b24b64abbb00110ccf0f7ca30fb036af.zip |
Merge pull request #15230 from owncloud/sqlite-notice
move SQLite notice from warnings to tips & tricks
-rw-r--r-- | settings/templates/admin.php | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 8c2b12fb2d9..42ae42a4d02 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -86,17 +86,6 @@ if (!$_['isAnnotationsWorking']) { <?php } -// SQLite database performance issue -if ($_['databaseOverload']) { - ?> - <li> - <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?><br> - <?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?><br> - <?php print_unescaped($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" href="%s">documentation ↗</a>.', link_to_docs('admin-db-conversion') )); ?> - </li> -<?php -} - // Windows Warning if ($_['WindowsWarning']) { ?> @@ -440,6 +429,16 @@ if ($_['cronErrors']) { <div class="section" id="admin-tips"> <h2><?php p($l->t('Tips & tricks'));?></h2> <ul> + <?php + // SQLite database performance issue + if ($_['databaseOverload']) { + ?> + <li> + <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?><br> + <?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?><br> + <?php print_unescaped($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" href="%s">documentation ↗</a>.', link_to_docs('admin-db-conversion') )); ?> + </li> + <?php } ?> <li><a target="_blank" href="<?php p(link_to_docs('admin-backup')); ?>"><?php p($l->t('How to do backups'));?> ↗</a></li> <li><a target="_blank" href="<?php p(link_to_docs('admin-monitoring')); ?>"><?php p($l->t('Advanced monitoring'));?> ↗</a></li> <li><a target="_blank" href="<?php p(link_to_docs('admin-performance')); ?>"><?php p($l->t('Performance tuning'));?> ↗</a></li> |