Extension:APC
From MediaWiki.org
|
|
This extension is currently not actively maintained! Meaning any reports for additional features and/or bugfixes will more than likely be ignored. Volunteers are encouraged to take on the task of developing and maintaining it. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
|
APC Release status: stable |
|||
|---|---|---|---|
| Implementation | Special page | ||
| Description | View and manage APC cache within MediaWiki | ||
| Author(s) | Niklas Laxström (NikerabbitTalk) | ||
| Latest version | 2014-03-27 | ||
| Database changes | No | ||
| License | No license specified | ||
| Download | |||
|
|||
|
Translate the APC extension if it is available at translatewiki.net |
|||
| Check usage and version matrix; code metrics | |||
| Open tasks · Report a bug | |||
The APC extension makes it possible to view and manage APC cache within MediaWiki.
Requirements[edit | edit source]
- PHP's APC extension
- GD extension to generate graphs
Installation[edit | edit source]
- Download and place the file(s) in a directory called
APCin yourextensions/folder. - Add the following code at the bottom of your LocalSettings.php:
require_once "$IP/extensions/APC/APC.php";
Done - Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Permission settings[edit | edit source]
"Special:APC" ("Special:ViewAPC" in older versions) is unrestricted, but it has some additional functionality that requires the apc right. You can create a new group and assign it this right:
$wgGroupPermissions['apc']['apc'] = true;
or simply give the right to an existing trusted group, like bureaucrat:
$wgGroupPermissions['bureaucrat']['apc'] = true;