lbrypress/templates/requirements-error.php

22 lines
777 B
PHP
Raw Normal View History

2022-01-26 02:20:27 +01:00
<?php
defined('ABSPATH') || die(); // Exit if accessed directly
?>
<div class="error">
<p><?php echo LBRY_NAME; ?> error: Your environment doesn't meet all of the system requirements listed below.</p>
<ul class="ul-disc">
<li>
<strong>PHP <?php echo LBRY_REQUIRED_PHP_VERSION; ?>+</strong>
<em>(You're running version <?php echo PHP_VERSION; ?>)</em>
</li>
<li>
<strong>WordPress <?php echo LBRY_REQUIRED_WP_VERSION; ?>+</strong>
<em>(You're running version <?php echo esc_html($wp_version); ?>)</em>
</li>
</ul>
<p>If you need to upgrade your version of PHP you can ask your hosting company for assistance, and if you need help upgrading WordPress you can refer to <a href="http://codex.wordpress.org/Upgrading_WordPress">the Codex</a>.</p>
</div>