diff --git src/readme.html src/readme.html
index a40c5e98a9..4c76fd4c17 100644
|
|
|
|
| 58 | 58 | <h3>Recommendations</h3> |
| 59 | 59 | <ul> |
| 60 | 60 | <li><a href="https://secure.php.net/">PHP</a> version <strong>7.4</strong> or greater.</li> |
| 61 | | <li><a href="https://www.mysql.com/">MySQL</a> version <strong>5.7</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.4</strong> or greater.</li> |
| | 61 | <li><a href="https://www.mysql.com/">MySQL</a> version <strong>8.0</strong> or greater OR <a href="https://mariadb.org/">MariaDB</a> version <strong>10.4</strong> or greater.</li> |
| 62 | 62 | <li>The <a href="https://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> Apache module.</li> |
| 63 | 63 | <li><a href="https://wordpress.org/news/2016/12/moving-toward-ssl/">HTTPS</a> support.</li> |
| 64 | 64 | <li>A link to <a href="https://wordpress.org/">wordpress.org</a> on your site.</li> |
diff --git src/wp-admin/includes/class-wp-site-health.php src/wp-admin/includes/class-wp-site-health.php
index 9951c8da25..201ba744a1 100644
|
|
|
class WP_Site_Health { |
| 17 | 17 | public $is_mariadb = false; |
| 18 | 18 | private $mysql_server_version = ''; |
| 19 | 19 | private $mysql_required_version = '5.5'; |
| 20 | | private $mysql_recommended_version = '5.7'; |
| | 20 | private $mysql_recommended_version = '8.0'; |
| 21 | 21 | private $mariadb_recommended_version = '10.4'; |
| 22 | 22 | |
| 23 | 23 | public $php_memory_limit; |