diff options
author | Jaime Pérez <jaime.perez@uninett.no> | 2016-08-22 17:38:05 +0200 |
---|---|---|
committer | Jaime Pérez <jaime.perez@uninett.no> | 2016-08-22 17:38:05 +0200 |
commit | 9c462677056874ee7410a5caca069a0d6aee6522 (patch) | |
tree | 2ecafad664159205eced3751824877d5501fe6aa | |
parent | bcd16555e57e219294252e15c0d19faeaae0f5e3 (diff) | |
download | simplesamlphp-9c462677056874ee7410a5caca069a0d6aee6522.zip simplesamlphp-9c462677056874ee7410a5caca069a0d6aee6522.tar.gz simplesamlphp-9c462677056874ee7410a5caca069a0d6aee6522.tar.bz2 |
Enhance the list of PHP extensions requirements.
-rw-r--r-- | modules/core/www/frontpage_config.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php index 49c1084..85e1d94 100644 --- a/modules/core/www/frontpage_config.php +++ b/modules/core/www/frontpage_config.php @@ -105,14 +105,15 @@ $functionchecks = array( 'simplexml_import_dom' => array('required', 'SimpleXML'), 'dom_import_simplexml' => array('required', 'XML DOM'), 'preg_match' => array('required', 'RegEx support'), - 'mcrypt_module_open'=> array('optional', 'MCrypt'), - 'pdo_drivers' => array('optional', 'PDO Extension'), + 'mcrypt_module_open'=> array('optional', 'MCrypt (required if digital signatures or encryption are used)'), + 'pdo_drivers' => array('optional', 'PDO Extension (required if a database backend is used)'), + 'memcache_debug' => array('optional', 'Memcache Extension (required if a Memcached backend is used)'), ); if (SimpleSAML\Module::isModuleEnabled('ldap')) { - $functionchecks['ldap_bind'] = array('required_ldap', 'LDAP Extension'); + $functionchecks['ldap_bind'] = array('optional', 'LDAP Extension (required if an LDAP backend is used)'); } if (SimpleSAML\Module::isModuleEnabled('radius')) { - $functionchecks['radius_auth_open'] = array('required_radius', 'Radius Extension'); + $functionchecks['radius_auth_open'] = array('optional', 'Radius Extension (required if a Radius backend is used)'); } $funcmatrix = array(); |