add checkbox for enabling memcached

This commit is contained in:
Uwe Steinmann 2025-02-27 09:06:19 +01:00
parent f281376ac2
commit 9f5390e560
2 changed files with 2 additions and 0 deletions

View File

@ -194,6 +194,7 @@ if ($action == "saveSettings")
setStrValue("partitionSize"); // TODO: check if valid value, e.g. 1M or 5K
setStrValue("maxUploadSize"); // TODO: check if valid value, e.g. 1M or 5K
setBoolValue("enableXsendfile");
setBoolValue("enableMemcached");
// SETTINGS - SYSTEM - AUTHENTICATION
setBoolValue("enableGuestLogin");

View File

@ -527,6 +527,7 @@ if(($kkk = $this->callHook('getFullSearchEngine')) && is_array($kkk))
<?php $this->showConfigText('settings_partitionSize', 'partitionSize'); ?>
<?php $this->showConfigText('settings_maxUploadSize', 'maxUploadSize'); ?>
<?php $this->showConfigCheckbox('settings_enableXsendfile', 'enableXsendfile'); ?>
<?php $this->showConfigCheckbox('settings_enableMemcached', 'enableMemcached'); ?>
<!--
-- SETTINGS - SYSTEM - AUTHENTICATION
-->