How to set up file cache for MediaWiKi
Create a cache directory and make sure Mediawiki can write to it:
mkdir -p /disk2/wikicachechown -R apache:apache /disk2/wikicache
chmod -R 777 /disk2/wikicache
Then enable file cache by adding the following lines to LocalSettings.php:
$wgUseFileCache = true;
$wgFileCacheDirectory = “/disk2/wikicache”;
$wgShowIPinHeader = false;
$wgUseGzip = false;
You can use tmpwatch to limit the size of cache on Linux.
Popularity: 1%


















































