You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'OCA\Settings\SetupChecks\PhpDefaultCharset' => ['pass' => true, 'description' => 'PHP configuration option default_charset should be UTF-8', 'severity' => 'warning', 'linkToDocumentation' => null],
609
608
'OCA\Settings\SetupChecks\PhpOutputBuffering' => ['pass' => true, 'description' => 'PHP configuration option output_buffering must be disabled', 'severity' => 'error', 'linkToDocumentation' => null],
610
609
'OCA\Settings\SetupChecks\LegacySSEKeyFormat' => ['pass' => true, 'description' => 'The old server-side-encryption format is enabled. We recommend disabling this.', 'severity' => 'warning', 'linkToDocumentation' => 'http://docs.example.org/server/go.php?to=admin-sse-legacy-format'],
610
+
'OCA\Settings\SetupChecks\SqliteDatabase' => ['pass' => false, 'description' => 'SQLite is used as database. For larger installations we recommend to switch to a different database.', 'severity' => 'warning', 'linkToDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion'],
Copy file name to clipboardExpand all lines: core/js/setupchecks.js
+1-16Lines changed: 1 addition & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -401,22 +401,6 @@
401
401
type: OC.SetupChecks.MESSAGE_TYPE_INFO
402
402
})
403
403
}
404
-
if(data.isSqliteUsed){
405
-
messages.push({
406
-
msg: t(
407
-
'core',
408
-
'SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.'
409
-
)+' '+t('core','This is particularly recommended when using the desktop client for file synchronisation.')+' '+
410
-
t(
411
-
'core',
412
-
'To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation ↗</a>.',
0 commit comments