Server Environment Edit

Although WordPress can work in almost any environment, even very minimal ones, it must be acknowledged that it does not work completely well in these. That’s why here we are going to make some minimum recommendations of the environment in which it would work most effectively when considering that most WordPress websites use third party plugins and themes which commonly introduce additional serverServer A server is a piece of computer hardware or software that provides functionality for other programs or devices. Typical servers are database servers, file servers, mail servers, print servers, web servers, game servers, and application servers.-level requirements.

Web Server

The web serverServer A server is a piece of computer hardware or software that provides functionality for other programs or devices. Typical servers are database servers, file servers, mail servers, print servers, web servers, game servers, and application servers. is piece of software that accepts user web requests and serves them the appropriate result. There are many different web servers that run on different operation systems. Generally, if your web server supports and executes PHPPHP PHP (PHP: Hypertext Preprocessor) is a general-purpose scripting language especially suited to web development. PHP code is usually processed on a web server by a PHP interpreter. On a web server, the result of the interpreted and executed PHP code would form the whole or part of an HTTP response. files, it should be able to work with WordPress.

The two most popular ones that are recommended are:

Others are used by hostingHosting A web hosting service is a type of Internet hosting service that allows individuals and organizations to make their website accessible via the World Wide Web. companies and developers and are known to work well too:

Those are the latest versions at the time of writing this document. Always keep your web server up-to-date to ensure best performance!

Top ↑

PHP

PHP is a programming language on which WordPress code is based. This language runs on the server and it is important to keep it up to date, both for security and functionality.

WordPress supports many versions of PHP, some even obsolete (PHP Compatibility and WordPress Versions), for hosting companies we recommend:

WordPress 6.4

IMPORTANT: WordPress 6.4 is compatible with exceptions with PHP 8.0, PHP 8.1, and PHP 8.2, and betaBeta Beta is the software development phase following alpha. A Beta phase generally begins when the software is feature complete but likely to contain a number of known or unknown bugs. Software in the beta phase will generally have many more bugs in it than completed software, speed or performance issues, and may still cause crashes or data loss. The focus of beta testing is reducing impacts to users, often incorporating usability testing. compatible with PHP 8.3.

What “compatible with exceptions” means?

What “beta” means?

  • PHP 8.3
    • Deprecation notices: A deprecation notice is not an error, but rather an indicator of where additional work is needed for compatibility before PHP 9.0. With a deprecation notice, the PHP code will continue to work and nothing is broken.

WordPress 6.3

IMPORTANT: WordPress 6.3 is compatible with exceptions with PHP 8.0 and PHP 8.1, and beta compatible with PHP 8.2.

What “compatible with exceptions” means?

What “beta” means?

  • PHP 8.2
    • Deprecation notices: A deprecation notice is not an error, but rather an indicator of where additional work is needed for compatibility before PHP 9.0. With a deprecation notice, the PHP code will continue to work and nothing is broken.

WordPress 6.2

IMPORTANT: WordPress 6.2 is beta compatible with PHP 8.0, PHP 8.1 and PHP 8.2. If used some of these versions may get some Warnings.

WordPress 6.1

IMPORTANT: WordPress 6.1 is beta compatible with PHP 8.0, PHP 8.1 and PHP 8.2. If used some of these versions may get some Warnings.

WordPress 6.0

IMPORTANT: WordPress 6.0 is beta compatible with PHP 8.0 and PHP 8.1. If used some of these versions may get some Warnings.

Top ↑

About PHP

PHP 8.0 is maintained by the PHP Community only as Security fix only starting 2022-11-26. Keeping your PHP to the latest stable version is important for WordPress speed and security.

Versions prior to PHP 7.4 are not maintained by the PHP Community, although they may receive security updates from operating systems distributions. Security support for PHP 7.4 ended in 2022-11-06 which means that even if there are security problems with it, official versions won’t be released.

End of life PHP versions:

  • PHP 8.3: n/d
  • PHP 8.2: 2025-10-08
  • PHP 8.1: 2024-11-25
  • PHP 8.0: 2023-11-26
  • PHP 7.4: 2022-11-28 last release: 7.4.33
  • PHP 7.3: 2021-12-06 last release: 7.3.33
  • PHP 7.2: 2020-11-30 last release: 7.2.34
  • PHP 7.1: 2019-12-01 last release: 7.1.33
  • PHP 7.0: 2019-01-10 last release: 7.0.33
  • PHP 5.6: 2018-12-31 last release: 5.6.40
  • PHP 5.5: 2016-07-21 last release: 5.5.38
  • PHP 5.4: 2015-09-03 last release: 5.4.45
  • PHP 5.3: 2014-08-14 last release: 5.3.29
  • PHP 5.2: 2011-01-06 last release: 5.2.17
  • PHP 5.1: 2006-08-24 last release: 5.1.6
  • PHP 5.0: 2005-09-05 last release: 5.0.5
  • PHP 4.4: 2008-08-07 last release: 4.4.9
  • PHP 4.3: 2005-03-31 last release: 4.3.11
  • PHP 4.2: 2002-09-06 last release: 4.2.3
  • PHP 4.1: 2002-03-12 last release: 4.1.2
  • PHP 4.0: 2001-06-23 last release: 4.0.6

Top ↑

PHP Extensions

WordPress coreCore Core is the set of software required to run WordPress. The Core Team builds WordPress. makes use of various PHP extensions when they’re available. If the preferred extension is missing WordPress will either have to do more work to do the task the module helps with or, in the worst case, will remove functionality. All the extensions are for installations with PHP >= 7.4.

The PHP extensions listed below are required for a WordPress site to work.

  • json (bundled in >=8.0.0) – Used for communications with other servers and processing data in JSONJSON JavaScript Object Notation (JSON) is an open standard file format, and data interchange format, that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and array data types. It is a very common data format, with a diverse range of applications, such as serving as a replacement for XML in AJAX systems. format.
  • One of either mysqli (bundled in >=5.0.0), or mysqlnd – Connects to MySQLMySQL MySQL is an open-source relational database management system (RDBMS). MySQL is free and open-source software under the terms of the GNU General Public License. for databaseDatabase A database is an organized collection of data. Access to this data is usually provided by a "database management system" (DBMS) consisting of an integrated set of computer software that allows users to interact with one or more databases and provides access to all of the data contained in the database. Because of the close relationship between them, the term "database" is often used casually to refer to both a database and the DBMS used to manipulate it. interactions.

The PHP extensions listed below are highly recommended in order to allow WordPress to operate optimally and to maximise compatibility with many popular plugins and themes.

  • curl (PHP >= 7.3 requires libcurl >= 7.15.5; PHP >= 8.0 requires libcurl >= 7.29.0) – Performs remote request operations.
  • dom (requires libxml) – Used to validate Text WidgetWidget A WordPress Widget is a small block that performs a specific function. You can add these widgets in sidebars also known as widget-ready areas on your web page. WordPress widgets were originally created to provide a simple and easy-to-use way of giving design and structure control of the WordPress theme to the user. content and to automatically configure IIS7+.
  • exif (requires php-mbstring) – Works with metadata stored in images.
  • fileinfo (bundled in PHP) – Used to detect mimetype of file uploads.
  • hash (bundled in PHP >=5.1.2) – Used for hashing, including passwords and update packages.
  • igbinary – Increases performance as a drop in replacement for the standard PHP serializer.
  • imagick (requires ImageMagick >= 6.2.4) – Provides better image quality for media uploads. See WP_Image_Editor for details. Smarter image resizing (for smaller images) and PDF thumbnail support, when Ghost Script is also available.
  • intl (PHP >= 7.4.0 requires ICU >= 50.1) – Enable to perform locale-aware operations including but not limited to formatting, transliteration, encoding conversion, calendar operations, conformant collation, locating text boundaries and working with locale identifiers, timezones and graphemes.
  • mbstring – Used to properly handle UTF8 text.
  • openssl (PHP 7.1-8.0 requires OpenSSL >= 1.0.1 / < 3.0; PHP >= 8.1 requires OpenSSL >= 1.0.2 / < 4.0) – SSLSSL Secure Sockets Layer (SSL) was a cryptographic protocol designed to provide communications security over a computer network. This protocol became obsolete due to a multitude of security problems and was replaced by TLS.-based connections to other hosts.
  • pcre (bundled in PHP >= 7.0 recommended PCRE 8.10) – Increases performance of pattern matching in code searches.
  • xml (requires libxml) – Used for XML parsing, such as from a third-party site.
  • zip (requires libzip >= 0.11; recommended libzip >= 1.6) – Used for decompressing Plugins, Themes, and WordPress update packages.

The PHP extensions listed below are recommended to allow some WordPress cacheCache A cache is a component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere. (if necessary). APCu, MemcachedMemcached Memcached is a general-purpose distributed memory-caching system. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times an external data source must be read. Memcached is free and open-source software., and RedisRedis Redis (Remote Dictionary Server) is an in-memory data structure store, in-memory key–value database. It is open-source software.. are alternatives of which only one needs to be used.

  • apcu – In-memory key-value store for PHP (former APC stripped of opcode cachingCache A cache is a component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsewhere.).
  • memcached (requires libmemcached >= 1.0.0) – memcached is a high-performance, distributed memory objectObject In computer science, an object can be a variable, a data structure, a function, or a method, and as such, is a value in memory referenced by an identifier. caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.
  • opcache – PHP can be configured to preload scripts into the opcache when the engine starts.
  • redis – PHP extension for interfacing with Redis.

For the sake of completeness, below is a list of the remaining PHP modules WordPress may use in certain situations or if other modules are unavailable. These are fallbacks or optional and not necessarily needed in an optimal environment, but installing them won’t hurt.

  • bc – For arbitrary precision mathematics, which supports numbers of any size and precision up to 2147483647 decimal digits.
  • filter – Used for securely filtering user input.
  • image (requires libgd >= 2.1.0; requires zlib >= 1.2.0.4; optional freetype2) – If Imagick isn’t installed, the GD Graphics Library is used as a functionally limited fallback for image manipulation.
  • iconv (requires libiconv/POSIX) – Used to convert between character sets.
  • shmop – Shmop is an easy to use set of functions that allows PHP to read, write, create and delete Unix shared memory segments.
  • simplexml (requires libxml) – Used for XML parsing.
  • sodium – (bundled in PHP >=7.2.0; requires libsodium >= 1.0.8) – Validates Signatures and provides securely random bytes.
  • xmlreader (requires libxml) – Used for XML parsing.
  • zlib (requires zlib >= 1.2.0.4) – Gzip compression and decompression.

These extensions are used for file changes, such as updates and pluginPlugin A plugin is a piece of software containing a group of functions that can be added to a WordPress website. They can extend functionality or add new features to your WordPress websites. WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. These can be free in the WordPress.org Plugin Directory or can be cost-based plugin from a third-party./themeTheme A theme dictates the style and function of your WordPress website. Child Themes derive from the main parent theme. installation, when files aren’t writeable on the server.

  • ssh2 (requires OpenSSL and libssh >= 1.2; recommended libssh >= 1.2.9) – Provide access to resources (shell, remote exec, tunneling, file transfer) on a remote machine using a secure cryptographic transport.
  • ftp – Implement client access to files servers speaking the File Transfer Protocol (FTPFTP FTP is an acronym for File Transfer Protocol which is a way of moving computer files from one computer to another via the Internet. You can use software, known as a FTP client, to upload files to a server for a WordPress website.).
  • sockets – Implements a low-level interface to the socket communication functions based on the popular BSD sockets.

The priority of the transports are Direct file IO, SSH2, FTP PHP Extension, FTP implemented with Sockets, and FTP implemented through PHP alone.

Top ↑

System Packages

Top ↑

Database

For data storage, WordPress uses systems compatible with MySQL.

Officially recommended by WordPress are:

End of life MySQL versions:

  • MySQL 8.2: n/d
  • MySQL 8.1: 2023-10-25
  • MySQL 8.0: 2026-04-30
  • MySQL 5.7: 2023-10-31
  • MySQL 5.6: 2021-02-28
  • MySQL 5.5: 2018-12-31

End of life mariaDBMariaDB MariaDB is a fork of the MySQL relational database management system (RDBMS), intended to remain free and open-source software under the GNU General Public License. MariaDB intended to maintain high compatibility with MySQL, ensuring a drop-in replacement capability with library binary parity and exact matching with MySQL APIs and commands. versions:

  • MariaDB 11.3: n/d
  • MariaDB 11.2: n/d
  • MariaDB 11.1: 2024-08-21
  • MariaDB 11.0: 2024-06-07
  • MariaDB 10.11: 2028-02-16
  • MariaDB 10.10: 2023-11-17
  • MariaDB 10.9: 2023-08-22
  • MariaDB 10.8: 2023-05-20
  • MariaDB 10.7: 2023-02-09
  • MariaDB 10.6: 2026-07-06
  • MariaDB 10.5: 2025-06-24
  • MariaDB 10.4: 2024-06-18
  • MariaDB 10.3: 2023-05-25
  • MariaDB 10.2: 2022-05-22
  • MariaDB 10.1: 2020-10-17
  • MariaDB 10.0: 2019-03-31
  • MariaDB 5.5: 2020-04-11

Other MySQL servers that are known to perform well are:

Although WordPress may run on older versions, it is recommended to use these or newer ones for security and performance reasons.

Top ↑

How do I know which version I have?

If you have WordPress 5.2+, the WordPress Admin already has tools with that information in the Site Health section (at Tools in the menu).

If you have an older version, you can activate the Site Health section installing the WordPress Community Plugin called Health Check & Troubleshooting (more help for this plugin).

If you’re interested in improving this handbook, check the Github Handbook repo, or leave a message in the #hosting channel of the official WordPress Slack.

Top ↑

Changelog

  • 2023-11-11: Up-to-date. Added some EOL for databases and PHP. WordPress 6.4 compatibility. Added more information about system packages.
  • 2023-10-04: Up-to-date. Added some EOL for databases and PHP. Explanation about BETA and EXCEPTIONS for WordPress 6.3.
  • 2023-09-07: Added shmop PHP extension.
  • 2023-08-02: Updated for WordPress 6.3 and up-to-date everything.
  • 2023-06-08: Added PHP igbinary extension.
  • 2023-05-27: Updated PHP extensions requirements and cache extensions.
  • 2023-04-19: MariaDB fixed with LTS versions
  • 2023-02-17: Updated LiteSpeed Web Server. Updates for WordPress 6.2 beta and PHP >= 7.4.
  • 2022-11-16: Updated WordPress 6.0 / WordPress 6.1, PHP compatibility information and other versions
  • 2022-06-22: Added PHP extensions requirements and cache extensions
  • 2022-06-06: Delete MariaDB 10.2
  • 2022-05-13: Update for WordPress 6.0 and stable software versions; updated deprecated PHP versions and extensions
  • 2021-05-27: Fixing infoboxes
  • 2021-05-07: Updated versions and extensions. PHP 7.3 bump based on Trac
  • 2021-05-05: Updated the imagick (WP_Image_Editor) link
  • 2021-05-05: Updated versions (webserver, PHP, SQL)
  • 2021-02-17: Changelog added
  • 2020-11-23: Minor text changes and info-block
  • 2020-07-16: Updated webserver versions and vendors. Updated PHP versions. Updated SQL versions and vendors. Added: How do I know which version I have?. Updated libsodium to sodium
  • 2020-06-02: Published from Github

Last updated: