Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-04-26 11:21:36 +0300
committerGitHub <noreply@github.com>2022-04-26 11:21:36 +0300
commit61082563bfb27a23cfb0eb5793411951a14cf095 (patch)
treeeef8e349ed8df23fa00692f045d77abf02c86aac
parentf46bc4389530fefcd1f28c536238dc22e6e9b8c6 (diff)
parent200b71d5b383a0fa7258318da9e78657a631a803 (diff)
Merge pull request #32136 from nextcloud/backport/32121/stable22
[stable22] update description of cronjob settings to be aligned to the documenta…
-rw-r--r--apps/settings/templates/settings/admin/server.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/settings/templates/settings/admin/server.php b/apps/settings/templates/settings/admin/server.php
index 075c57396d1..b3a1c9101ce 100644
--- a/apps/settings/templates/settings/admin/server.php
+++ b/apps/settings/templates/settings/admin/server.php
@@ -68,7 +68,7 @@
title="<?php p($l->t('Open documentation'));?>"
href="<?php p(link_to_docs('admin-background-jobs')); ?>"></a>
- <p class="settings-hint"><?php p($l->t('For optimal performance it\'s important to configure background jobs correctly. For bigger instances \'Cron\' is the recommended setting. Please see the documentation for more information.'));?></p>
+ <p class="settings-hint"><?php p($l->t('For the server to work properly, it\'s important to configure background jobs correctly. \'Cron\' is the recommended setting. Please see the documentation for more information.'));?></p>
<form action="#">
<fieldset>
<legend class="hidden-visually"><?php p($l->t('Pick background job setting'));?></legend>
@@ -78,7 +78,7 @@
print_unescaped('checked="checked"');
} ?>>
<label for="backgroundjobs_ajax">AJAX</label><br/>
- <em><?php p($l->t("Execute one task with each page loaded.")); ?></em>
+ <em><?php p($l->t("Execute one task with each page loaded. Use case: Single user instance.")); ?></em>
</p>
<p>
<input type="radio" name="mode" value="webcron" class="radio"
@@ -86,7 +86,7 @@
print_unescaped('checked="checked"');
} ?>>
<label for="backgroundjobs_webcron">Webcron</label><br/>
- <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 5 minutes over HTTP.")); ?></em>
+ <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 5 minutes over HTTP. Use case: Very small instance (1–5 users depending on the usage).")); ?></em>
</p>
<p>
<input type="radio" name="mode" value="cron" class="radio"
@@ -96,8 +96,8 @@
if (!$_['cli_based_cron_possible']) {
print_unescaped('disabled');
}?>>
- <label for="backgroundjobs_cron">Cron</label><br/>
- <em><?php p($l->t("Use system cron service to call the cron.php file every 5 minutes.")); ?>
+ <label for="backgroundjobs_cron">Cron (<?php p($l->t("Recommended")); ?>)</label><br/>
+ <em><?php p($l->t("Use system cron service to call the cron.php file every 5 minutes. Recommended for all instances.")); ?>
<?php if ($_['cli_based_cron_possible']) {
p($l->t('The cron.php needs to be executed by the system user "%s".', [$_['cli_based_cron_user']]));
} else {