Hướng dẫn sử dụng: Tiện ích mở rộng
Tiện ích mở rộng cho phép bạn tùy chỉnh giao diện của MediaWiki và hoạt động.
- Người dùng Wiki có thể duyệt qua các phần mở rộng.
- Quản trị viên hệ thống có thể cài đặt (hoặc xóa) tiện ích mở rộng trên các cài đặt MediaWiki mà họ quản lý.
- Nhà phát triển có thể viết tiện ích mở rộng mới hoặc cải thiện hoặc duy trì tiện ích mở rộng.
Mặc dù một số phần mở rộng được duy trì bởi các nhà phát triển MediaWiki, những phần mở rộng khác được viết bởi các nhà phát triển bên thứ ba. Kết quả là, nhiều người có lỗi và chúng không được đảm bảo để tương thích với nhau. Một số không rõ ràng; không phải tất cả các phần mở rộng đều hoạt động trên tất cả các phiên bản của MediaWiki. Sử dụng bất kỳ tiện ích mở rộng nào, đặc biệt là những tiện ích được gắn thẻ là không an toàn, có nguy cơ của riêng bạn. Nếu bạn đang sử dụng tiện ích mở rộng yêu cầu các bản vá cho phần mềm cốt lõi, hãy nhớ sao lưu cơ sở dữ liệu của bạn. Điều này giúp tránh nguy cơ phá vỡ wiki của bạn.
Các loại tiện ích mở rộng
Thẻ Phân Tích Cú Pháp
Hàm phân tích cú pháp
Sách giáo khoa
Special pages
Magic words
API
Page content models
Finding extensions
Browsing extensions
You can browse Uh A Category:Extensions by category to see the full range of extensions that have already been written. For information on installing these extensions or writing your own, see below.
Checking installed extensions
Only someone with administration access to the filesystem (and often the database too) on a server can install extensions for MediaWiki, but anyone can check which extensions are active on an instance of MediaWiki by accessing the Special:Version page. For example, these extensions are active in the English Wikipedia.
Popular extensions
There are a number of ways of finding popular extensions.
The first set is those that are bundled with MediaWiki (a list that is reviewed regularly, and to which anyone can suggest an addition).
Extensions that are downloaded from MediaWiki.org via the ExtensionDistributor mechanism have some statistics gathered. The top 15 most downloaded extensions are listed at Special:ExtensionDistributor, and applicable extensions have their download count shown in their infobox. Note that these numbers do not account for alternate ways of installing extensions, such as via Git or Composer.
A third option is to look at WikiApiary 's counts of wikis that extensions are installed on. This has the advantage of representing actual installations and not just downloads (i.e. it queries the wiki's APIs), but it is also (as of 2023) not completely up to date. It also doesn't count installations on private wikis.
Installing an extension
- For further guidance, see also Manual:Extensions/Installation and upgrade
MediaWiki is ready to accept extensions just after installation is finished. To add an extension follow these steps:
- Before you start
- Many extensions provide instructions designed for installation using Unix commands. You require shell access (SSH) to enter these commands listed on the extension help pages.
- Download your extension.
- Extension Distributor helps you to select and download most of the popular extensions.
- Extensions are usually distributed as modular packages. They generally go in their own subdirectory of
$IP /extensions/
. A list of extensions stored in the Wikimedia Git repository is located at git:mediawiki/extensions. Some extensions don't use version control and are not recommended. - Some extensions are also available in bundles, composer or package repositories.
- It's recommended to read the README file before installation. It usually contains important info about configuration.
- Install your extension.
- At the end of the
LocalSettings.php
file, add: wfLoadExtension( 'ExtensionName' );
- This line forces the PHP interpreter to read the extension file, and thereby make it accessible to MediaWiki.
- Some extensions can conflict with maintenance scripts, for example if they directly access $_SERVER (not recommended).
- In this case they can be wrapped in the conditional so maintenance scripts can still run.
if ( !$wgCommandLineMode ) { wfLoadExtension ( 'ExtensionName' ); }
- The maintenance script importDump.php will fail for any extension which requires customised namespaces which is included inside the conditional above such as Extension:Semantic MediaWiki , Extension:Page Forms .
- At the end of the
- Ensure that required permissions are set for extensions!
- While this installation procedure is sufficient for most extensions, some require a different installation procedure. Check your extension's documentation for details.
- If you want to alter configuration variables in
LocalSettings.php
, you have to do this typically after including the extension. Otherwise defaults defined in the extension will overwrite your settings.
Upgrading an extension
Some extensions require to be updated whenever you update MediaWiki, while others work with multiple versions. To upgrade to a new version of an extension:
- Download the new version of the extension
- Replace all the extension files in the
extensions/ExtensionName
directory with the new files. Do not remove the extension configuration present inLocalSettings.php
- If the extension requires changes to the MediaWiki database, you will need to run the update.php maintenance script. Most extensions will mention if this script needs to be run or not. (Perform backup of your data before executing the script). If you don't have command line access, you can also use the web updater.
Uninstalling an extension
Remove the line from LocalSettings.php
with the extension name to uninstall it:
wfLoadExtension( 'ExtensionName' );
- You must remove any lines pertaining to the configuration of the extension.
See also
- Thể loại:Tiện ích mở rộng
- Bản mẫu:Phần mở rộng
- Thủ công:Dịch phần mở rộng
- Thủ công:Dịch phần mở rộng - Information about translating extensions.
- Special:ExtensionDistributor - Includes a list of the 15 most downloaded extensions in Wikimedia version control
- extloc - Where are MediaWiki extensions deployed in Wikimedia production?
- API:SiteInfo extension information