cb61208b12
* prevent access from outside wordpress * prevent discovery of file structure
21 lines
777 B
PHP
21 lines
777 B
PHP
<?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>
|