gmaister22
Active member
I just installed memcached and memcache (not sure if its needed to have em both installed, some people say its better to have em both up and running)
That's what i have added in the config file:
But when i save it, i get "An unexpected Error occurred. Please try again later"
What's wrong? :S
That's what i have added in the config file:
Code:
$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';
$config['cache']['backend'] = 'Memcached';
$config['cache']['backendOptions'] = array(
'compression' => false,
'servers' => array(
array(
// your memcached server IP /address
'host' => 'localhost',
// memcached port
'port' => 11211,
)
)
);
But when i save it, i get "An unexpected Error occurred. Please try again later"
What's wrong? :S