XF 1.5 Cache problem after moving server.

Onlyme

Active member
I was using memchached on the old server but decided not to use it on the new one.

So I thought all you need to do is remove the cache code from config.php file but when I do it gives this error:

Zend_Cache_Exception: cache_dir is not writable - library/Zend/Cache.php

The only way I can get the site to work is by adding front end cache to the config.

true; $config['cache']['frontend'] = 'Core'; $config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';
 
If you're getting that error when removing your cache instructions, you're very likely still leaving some cache-related instructions in the config file (probably the cache enabling line).
 
If you're getting that error when removing your cache instructions, you're very likely still leaving some cache-related instructions in the config file (probably the cache enabling line).
I have the default config mike i just checked again.

Seems its an addon because if i disable all addons the site works. just need to find what addon is the problem tho :(
 
Top Bottom