MediaWiki strives to maintain broad compatibility between versions, and with a range of current and legacy software. At the same time, the constantly-evolving codebase and features of the latest MediaWiki development mean that it is not possible to maintain compatibility with legacy software indefinitely.
If you wish to suggest a change to what MediaWiki supports, you can file a request for comments on Phabricator (Help).
Server softwareThese sections provide an overview of the software required on the server to run MediaWiki.
PHPThe latest stable branch of MediaWiki (1.44) runs on PHP 8.1.0 and higher.
For upcoming versions, see Support policy for PHP .
Wikimedia production servers currently run PHP 8.1. MediaWiki core's automated test suite uses PHP 8.1 when a patch is created, and PHP 8.1, 8.2, 8.3 when merging. MediaWiki developers are encouraged to develop using the latest supported version of PHP. The MediaWiki Docker image, primarily used by developers, uses PHP 8.3 as of December 2024.
If your OS distribution has an unsupported version of PHP, you may be able to use a community package repository:
MediaWiki is compatible with a variety of database servers. Using MySQL or MariaDB is recommended.
Using any other database software is not recommended for production use. Support differs from MediaWiki version to MediaWiki version and ranges from dubious to stable. MediaWiki provides database abstraction layers for PostgreSQL and SQLite, which are generally well-maintained.
Since
version 1.36, MediaWiki commits to supporting upgrades from up to two
LTS releasesago (see
T259771). Upgrades from older versions of MediaWiki have to be performed in multiple steps. For example, to upgrade from 1.34 (or earlier) to 1.44, first upgrade your wiki to 1.35 (or 1.39), and then, you'll be able to upgrade to 1.44.
Database compatibility matrix with MediaWiki 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.40 1.41 1.42 1.43 master MariaDB 10.3.0+ MariaDB 10.1.0+ MySQL 5.7.0+ MySQL 5.5.8+ MySQL 5.0.3+ MySQL 4.x MySQL 3.x SQLite 3.24.0+ SQLite 3.8.0+ SQLite 3.3.7+ 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.40 1.41 1.42 1.43 master SQLite 3+ PostgreSQL 10+ Postgres 9.4+ Postgres 9.2+ Postgres 8.3+ Postgres 8.1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.40 1.41 1.42 1.43 master UpgradeSince
version 1.36, MediaWiki commits to supporting upgrades from up to two
LTS releasesago (see
T259771). Upgrades from older versions of MediaWiki have to be performed in multiple steps. For example, to upgrade from 1.34 (or earlier) to 1.44, first upgrade your wiki to 1.35 (or 1.39), and then, you'll be able to upgrade to 1.44.
Web serverMediaWiki is broadly compatible with all major web servers that can invoke a compatible version of PHP. Apache is the most used and tested. Nginx is a good choice as well.
As long as an extension or skin is properly maintained, the master branch of the extension or skin should be compatible with the master branch of MediaWiki. For determining compatibility with older MediaWiki versions, there are the following common policies used by extensions and skins:
The compatibility policy field of the Extension info box tells which policy is used by a given extension. Use the respective keys indicated above to specify the information.
Some extensions may have more specific compatibility policies, for instance:
Browsers General informationEvery web page starts in Basic mode, where only the HTML is rendered. CSS can be assumed to succeed for visual readers and should be used for presentation. The Modern layer (subdivided into support grades A, C, and X) defines optional enhancements and interactions written in client-side JavaScript. This layer may fail to load, arrive later, or not at all, including in modern browsers. This depends on various circumstances. To learn more, refer to MediaWiki Engineering guidelines.
The JavaScript requirements for the "Modern" layer are implemented via a feature test in the startup module, inspired by the "cutting the mustard" approach.[1] The modern layer currently requires the browser to implement JavaScript version ES2017 or later.[1] MediaWiki developers should only use JavaScript syntax and Web APIs supported in the Grade A browsers listed below. This is enforced through ESLint rules in eslint-config-wikimedia.
There is an ever-growing number of different web browsers and browser-capable devices in the world. Too many to actively test and support each one. To guide our practices around browser support, we define three support grades. Each grade represents a different category of browsers.
In practice, the only difference between browser grades is our investment in testing and support. All browsers receive the same server responses and will try to load the Modern layer if it passes the required JavaScript capabilities.
Grade AGrade A browsers receive the highest level of support. MediaWiki takes advantage of capabilities in modern browsers while allowing a graceful fallback for older browsers. New features developed must work in these browsers (whether or not in a degraded form).
Browsers in this category are known (listed below), actively tested against and meet the requirements for the "Modern" layer. Problems users perceive in these browsers are addressed with high priority.
Grade CGrade C browsers must receive the core functionality of the MediaWiki platform. Our HTTP responses are compatible with these browsers (e.g., HTTP features we rely on, character encoding, and image formats; must work in these browsers). In the front end, this means content is presented in a readable manner, and all page and account actions are discoverable and work, but optional JavaScript enhancements may be absent. For browsers that don't pass the feature test (mentioned above), JavaScript enhancements are not loaded on top.
Browsers in this category are known (listed below), and are rarely tested against. Problems users perceive in these browsers are addressed with high priority. However, mitigation may focus on ensuring that available functionality is not broken; if acceptable from a product perspective, this may result in an affected enhancement being skipped (whether or not temporarily) rather than restored in these browsers.
Grade XAll other browsers are referred to as "Grade X".
MediaWiki handles these browsers the same as Grade A and Grade C browsers: there is no user agent filter, and if they pass the feature test for the "Modern" layer, they receive JavaScript enhancements.
Browsers not included in any other group belong to this category, including:
This principle means users of new and evolving browsers are given a chance to have a modern experience.
These browsers are not common enough to justify the added maintenance cost for software development and are essentially never tested. Problems users perceive in these browsers are given low priority.
Browser support matrix DesktopThe principles and different grades described above apply to MediaWiki core and extensions alike. The support matrix below applies these grades in the context of MediaWiki core, Wikimedia Foundation infrastructure, and any MediaWiki extensions that decide to follow it. Individual extensions may have their own support matrix distributing browsers among the different levels of support. See also Browser usage breakdown dashboard.
Browser support matrix as of November 2024 v · d · e Browsers Chrome Edge Firefox Safari iOS Android[note 1] Modern (Grade A) Last three years' versions (2022) 11.1+ (2018) 11.3+ (2018) 6+ (2015)[note 2] Basic (Grade C) 49+ (2016) 79+ (2020) 49+ (2016) 10+ (2016) 10+ (2016) 5+ (2014)[note 3] Unknown (Grade X) All other browsers Practical implications as of November 2024 Platform Minimum OS or device Supported modern browser Android Moto G (1st generation) (2013)List of changes, most recent first:
The Wikimedia Foundation also provides an up-to-date browserslist config reflecting the support matrix.
The Web team at the Wikimedia Foundation applies a narrower support matrix for mobile-specific skins, e.g., Minerva and/or extensions designed only to run on mobile devices, e.g., MobileFrontend . The support matrix is compiled from the data provided by the analytics user agent breakdown dashboard. Where browser usage is over 5%, a modern experience (Grade A) is supported. Basic support (Grade C) is provided for anything over 0.1% during the previous 12 months. In mobile we strive to provide a Grade B. Users of grade B may or may not get JavaScript and we do not test to the same level as A, thus we prioritise bug fixes lower. Modern support browser list on MobileFrontend is defined in .browserlistsrc
file.
Anything absent in the list or older is considered a basic supported browser.
See alsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4