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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-05-21 07:41:03 +0400
committermattab <matthieu.aubry@gmail.com>2014-05-21 07:41:03 +0400
commitce8b82e4ce10f22d9dcd8ca7bdc0ad0c78116741 (patch)
tree2a251318d3eb51902e84b2bca1f15aedd12e622e /plugins/Installation/templates/_systemCheckSection.twig
parent88e0d5d2a46d63fd470f75ac8afaef940ecc882b (diff)
Fixes #5204 Add new system check whether the Piwik server supports managing processes in CLI
Diffstat (limited to 'plugins/Installation/templates/_systemCheckSection.twig')
-rwxr-xr-xplugins/Installation/templates/_systemCheckSection.twig15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/Installation/templates/_systemCheckSection.twig b/plugins/Installation/templates/_systemCheckSection.twig
index 7b4c6177b6..5f0ec0e6a5 100755
--- a/plugins/Installation/templates/_systemCheckSection.twig
+++ b/plugins/Installation/templates/_systemCheckSection.twig
@@ -267,6 +267,20 @@
{% endif %}
</td>
</tr>
+
+ <tr>
+ <td class="label">{{ 'Installation_SystemCheckCronArchiveProcess'|translate }}</td>
+ <td>
+ {# Both results are OK, but we report the status to help troubleshoot #}
+ {% if infos.cli_process_ok %}
+ {{ ok }} {{ 'Installation_SystemCheckCronArchiveProcessCLI'|translate }}: {{ 'General_Ok'|translate }}
+ {% else %}
+ {{ ok }} {{ 'Installation_SystemCheckCronArchiveProcessCLI'|translate }}:
+ {{ 'Installation_NotSupported'|translate }} {{ 'Goals_Optional'|translate }}
+ {% endif %}
+ </td>
+ </tr>
+
{% if duringInstall is empty %}
<tr>
<td class="label">{{ 'UserCountry_Geolocation'|translate }}</td>
@@ -312,6 +326,7 @@
</tr>
{% endif %}
+
</table>
{% include "@Installation/_integrityDetails.twig" %}