howto fix slow mediawiki
The file cache is enabled by setting these variables in LocalSettings.php:
$wgUseFileCache = true;$wgFileCacheDirectory = "/tmp/yourcache";$wgShowIPinHeader = false;$wgUseGzip = false;
You need to manually create the top level cache directory and make sure Mediawiki can write to it:
$ mkdir -p /tmp/yourcache$ chmod -R 777 /tmp/yourcache







