mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
docs: Updated docs to include installing xml php modules + updated validate (#7349)
This commit is contained in:
committed by
Tony Murray
parent
25bb27c39e
commit
529660b8c5
@@ -98,9 +98,9 @@ if (!file_exists('vendor/autoload.php')) {
|
||||
}
|
||||
|
||||
// Check php modules we use to make sure they are loaded
|
||||
$extensions = array('mysqli','pcre','curl','session','snmp','mcrypt');
|
||||
$extensions = array('mysqli','pcre','curl','session','snmp','mcrypt', 'xml');
|
||||
foreach ($extensions as $extension) {
|
||||
if (extension_loaded($extension) === false) {
|
||||
if (extension_loaded($extension) == false) {
|
||||
$missing_extensions[] = $extension;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user