In Package v.4.3.2, the MemCache construct has an error:
Uncaught Exception: Please added servers in /home/sistemas/relatorio/vendor/koolreport/cache/MemCache.php:29
$ttl = Utility::get($settings,"ttl",5*60);
$servers = Utility::get($servers,"servers"); // <---- calls $server instead $settings
if($servers==null)
{
throw new \Exception("Please added servers");
}
He calls $server instead $settings. When I change tihs line to use $settings, everything work correctly.