Sorry to bother you again.. but I'm facing another issue now. I've already installed the software but now I'm not able to go the login page. I tried to open the page:
http://<domain.com>/Mibew/index.php/operator/login?login=admin
but it shows this error:
Warning: array_keys() expects parameter 1 to be array, string given in /<path>/Mibew/libs/classes/Mibew/Cache/CacheFactory.php on line 105
Warning: array_diff(): Argument #1 is not an array in /<path>/Mibew/libs/classes/Mibew/Cache/CacheFactory.php on line 105
Fatal error: Unsupported operand types in /<path>/Mibew/libs/classes/Mibew/Cache/CacheFactory.php on line 115
The script from line 104 to 124 is this:
// Make sure all passed options are known
$unknown_options = array_diff(array_keys($options), array_keys($defaults));
if (count($unknown_options) != 0) {
throw new \InvalidArgumentException(sprintf(
'These options are unknown: %s',
implode(', ', $unknown_options)
));
}
if (empty($this->options)) {
// The options are set for the first time.
$this->options = $options + $defaults;
} else {
// Update only specified options.
$this->options = $options + $this->options;
}
// Cached instance of cache is not valid any more. New one should be
// created.
$this->cache = null;
}