Skip to content
Snippets Groups Projects
Unverified Commit 9b89baca authored by Joas Schilling's avatar Joas Schilling
Browse files

Cron should run every 5 mins


So also 10 mins is now an error, so admins check their set up crons

Signed-off-by: default avatarJoas Schilling <coding@schilljs.com>
parent 12fd9103
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
$formatter = \OC::$server->getDateTimeFormatter(); $formatter = \OC::$server->getDateTimeFormatter();
$absolute_time = $formatter->formatDateTime($_['lastcron'], 'long', 'long'); $absolute_time = $formatter->formatDateTime($_['lastcron'], 'long', 'long');
if (time() - $_['lastcron'] <= 3600): ?> if (time() - $_['lastcron'] <= 600): ?>
<span class="status success"></span> <span class="status success"></span>
<span class="crondate" title="<?php p($absolute_time);?>"> <span class="crondate" title="<?php p($absolute_time);?>">
<?php p($l->t("Last job ran %s.", [$relative_time]));?> <?php p($l->t("Last job ran %s.", [$relative_time]));?>
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
print_unescaped('checked="checked"'); print_unescaped('checked="checked"');
} ?>> } ?>>
<label for="backgroundjobs_webcron">Webcron</label><br/> <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 15 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.")); ?></em>
</p> </p>
<p> <p>
<input type="radio" name="mode" value="cron" class="radio" <input type="radio" name="mode" value="cron" class="radio"
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
print_unescaped('disabled'); print_unescaped('disabled');
}?>> }?>>
<label for="backgroundjobs_cron">Cron</label><br/> <label for="backgroundjobs_cron">Cron</label><br/>
<em><?php p($l->t("Use system cron service to call the cron.php file every 15 minutes.")); ?> <em><?php p($l->t("Use system cron service to call the cron.php file every 5 minutes.")); ?>
<?php if($_['cli_based_cron_possible']) { <?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']])); p($l->t('The cron.php needs to be executed by the system user "%s".', [$_['cli_based_cron_user']]));
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment