After generating the Nagios config files from my local Icinga installation, I got the following error message when attempting to deploy the files:
Fatal error: Cannot unset string offsets in /usr/src/nconf/include/modules/deployment/class.deployment.php on line 100
This seems to point to the unset definition for the code below:
foreach ($ini_array AS $config_group_name => $config_group){
// get type and unset type in config array
$type = $config_group["type"];
unset($config_group["type"]);
Why is this happening and what should be done to resolve this?