diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-16 22:36:08 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-17 13:28:02 +0100 |
commit | b701bbd8c5f6051ec0f4bd360473290cf9ebdf71 (patch) | |
tree | c751e985d9c265eb3831419ec0089a6f66e34798 /settings/templates/admin.php | |
parent | 76c511de92f1b4dc6dcc31ac5ae15ffade29bb18 (diff) | |
download | nextcloud-server-b701bbd8c5f6051ec0f4bd360473290cf9ebdf71.tar.gz nextcloud-server-b701bbd8c5f6051ec0f4bd360473290cf9ebdf71.zip |
Use APCu only if available in version 4.0.6 and higher
APCu before 4.0.6 is unbelievable buggy and tend to segfault the PHP process (i.e. the whole webserver)
This potentially fixes https://github.com/owncloud/core/issues/14175
Requires a backport to stable8
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r-- | settings/templates/admin.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 363b4741b74..1f7eacd746b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -143,9 +143,24 @@ if ($_['WindowsWarning']) { </p> </div> + <?php } +// APCU Warning if outdated +if ($_['ApcuOutdatedWarning']) { + ?> + <div class="section"> + <h2><?php p($l->t('APCu below version 4.0.6 installed'));?></h2> + + <p class="securitywarning"> + <?php p($l->t('APCu below version 4.0.6 is installed, for stability and performance reasons we recommend to update to a newer APCu version.')); ?> + </p> + + </div> + +<?php +} // if module fileinfo available? if (!$_['has_fileinfo']) { ?> |