XF 1.2 Cache setting

redwolf6

Member
Hello,

I want my forums to run faster so I found this:

http://xenforo.com/help/cache/

What do I have to do exactly? just add this to the config.php file?

HTML:
$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';
$config['cache']['cacheSessions'] = true;

You may alter the 'cache_id_prefix' values to suit your own needs.

What does that mean? I change xf - so it's the same prefix of my xenforo database?

Is there anything else I can add? I don't have APC or memcached installed as it's a shared hosting.

Thanks!
 
I use this:

Code:
$config['cache']['enabled'] = true;
$config['cache']['frontend'] = 'Core';
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';

$config['cache']['backend'] = 'File';
$config['cache']['backendOptions'] ['cache_dir'] = '/path/to/folder/where/you/put/cache';
cache_id_prefix means prefix for your file cache. You can change it to whatever you wanted. You don't have to set it same as database prefix.

I will recommended cache_dir = /internal_data/somefolder/

Of course you need to create the somefolder first, and chmod to 777
 
Last edited:
Thank you :)

How do I know if it's an error?

And will this cache help my forum to be faster? will there be any delay with showing the new posts?

What does it do actually?

Sorry I know a lot of questions :giggle:
 
You can also use APC or Memcached for the back end, if your server is configured, rather than simple file store.

You will likely need to be on a VPS to use that though - file store is generally for those on shared hosting.
 
Thank you :)

How do I know if it's an error?
You can't open your forum. ;)

And will this cache help my forum to be faster? will there be any delay with showing the new posts?
Depends on how big your forum. If you have a small forum, you will not notice any different, probably.

What does it do actually?
Dunno. I'm not a techie person. :D

Sorry I know a lot of questions :giggle:
No problems. :)
 
Top Bottom