File Back-End

I am a total novice in this subject and appreciate any help.

I just added the one line as shown on this page
http://xenforo.com/help/cache/

Anything else I should do? Do I need to restart the server?
actually you need a few more lines...

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

and then what you probably already added...

Code:
$config['cache']['backend'] = 'File';
 
OK added the extra lines. So no need for a restart?



actually you need a few more lines...

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

and then what you probably already added...

Code:
$config['cache']['backend'] = 'File';
 
Top Bottom