aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/setupchecks.js
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2024-01-16 11:30:08 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2024-03-18 11:10:39 +0100
commit28dafd9413613d3d71b3d6f2de3227bb244f68e4 (patch)
treebe3c8ae1461e7a6afa570ff6a47fa6b0c5cb8e89 /core/js/setupchecks.js
parentbfb451c883745eb3c620c5c66d0169585b7d5ed2 (diff)
downloadnextcloud-server-28dafd9413613d3d71b3d6f2de3227bb244f68e4.tar.gz
nextcloud-server-28dafd9413613d3d71b3d6f2de3227bb244f68e4.zip
Migrate MySQL utf8mb4 check to new SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r--core/js/setupchecks.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index 0be5ceafd36..761fca14ed9 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -189,14 +189,6 @@
});
}
- if (data.isMysqlUsedWithoutUTF8MB4) {
- messages.push({
- msg: t('core', 'MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read {linkstart}the documentation page about this ↗{linkend}.')
- .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-mysql-utf8mb4') + '">')
- .replace('{linkend}', '</a>'),
- type: OC.SetupChecks.MESSAGE_TYPE_WARNING
- })
- }
if (!data.isEnoughTempSpaceAvailableIfS3PrimaryStorageIsUsed) {
messages.push({
msg: t('core', 'This instance uses an S3 based object store as primary storage. The uploaded files are stored temporarily on the server and thus it is recommended to have 50 GB of free space available in the temp directory of PHP. Check the logs for full details about the path and the available space. To improve this please change the temporary directory in the php.ini or make more space available in that path.'),