Manual:$wgFileCacheDirectory/ru

This page is a translated version of the page Manual:$wgFileCacheDirectory and the translation is 7% complete.
URL-адреса серверов и пути к файлам: $wgFileCacheDirectory
Directory where the cached pages will be saved when using server-side caching.
Введено в версии:pre 1.1.0
Удалено в версии:всё ещё используется
Допустимые значения:(absolute path)
Значение по умолчанию:"{$wgUploadDirectory }/cache"
(Note: The default value of this variable depends on other variables, such as the values set in Setup.php , after LocalSettings.php is executed)

Details

If you switch on server-side file caching $wgUseFileCache = true;, then you can use this variable to specify where the cached pages will be saved on your server filesystem.

It's an absolute path, so you could specify somewhere under /tmp for example:

$wgFileCacheDirectory = "/tmp/yourcache";

...but you can specify this absolute path in relation to other directory path variables, e.g.:

$wgFileCacheDirectory = "{$wgUploadDirectory}/cache";

This specifies a "cache" directory under the image uploads directory (normally called "images"). This is the default setting in fact.

The directory will be created automatically if it does not exist. If the server is unable to create the directory, this needs to be done manually. The PHP user must have write access to the cache directory.
If you are hosting multiple wikis from a shared source, you must ensure each has its own separate cache directory to avoid mis-serving pages with the same name (the Main Page, for example).

См. также