crazy
Member
Hello Do I need to install zend for cache?
 
I have memcache on my server but I removed zend,
 
When I add this code to my config
 
	
	
	
		
 
My forum gives an error which is Unexpected error occured vsvs
 
To get rid of this Do I need to install zend or there is something bad in the code?
 
Thank you very much
				
			I have memcache on my server but I removed zend,
When I add this code to my config
		Code:
	
	$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions'] = array('caching'  =>  true,
                                            'automatic_serialization' => true,
                                            'lifetime'    => 1800
);
$config['cache']['backend'] = 'Memcached';
$config['cache']['backendOptions'] = array(
    'backendOptions'=>array(
            'servers' =>array(
                            array(
                                'host' => 'localhost', // your memcached server ip /address
                                'port' => 11211        // memcached port
                            )
                        ),
            'compression' => false
    )
);My forum gives an error which is Unexpected error occured vsvs
To get rid of this Do I need to install zend or there is something bad in the code?
Thank you very much
 
 
		 
 
		 
 
		 
 
		