HEX
Server: Apache
System: Linux p102.lithium.hosting 4.18.0-553.141.1.el8_10.x86_64 #1 SMP Fri Jul 10 17:48:02 UTC 2026 x86_64
User: bvzmoamr (9955)
PHP: 8.1.34
Disabled: syslog
Upload Files
File: /var/www/html/wp-content/themes/genesis/config/requirements.php
<?php
/**
 * Genesis Framework.
 *
 * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
 * Please do all modifications in the form of a child theme.
 *
 * @package StudioPress\Genesis
 * @author  StudioPress
 * @license GPL-2.0-or-later
 * @link    https://my.studiopress.com/themes/genesis/
 */

$genesis_wp_version  = '4.7';
$genesis_php_version = '5.3';

/**
 * The requirements configuration. An environment that does not meet these minimums will not be able to use Genesis.
 *
 * @since 2.7.0
 */
return [
	'wordpress' => [
		'version' => $genesis_wp_version,
		'i18n'    => [
			/* translators: 1: Version of WordPress that Genesis requires, 2: The WordPress version on this site */
			'requirements' => sprintf( __( 'Genesis requires WordPress version %1$s or higher. You are using version %2$s. Please upgrade WordPress to use Genesis.', 'genesis' ), $genesis_wp_version, $GLOBALS['wp_version'] ),
		],
	],
	'php'       => [
		'version' => $genesis_php_version,
		'i18n'    => [
			/* translators: 1: Version of PHP that Genesis requires, 2: The PHP version on this site */
			'requirements' => sprintf( __( 'Genesis requires PHP version %1$s or higher. You are using version %2$s. Please <a href="%3$s">upgrade PHP</a> to use Genesis.', 'genesis' ), $genesis_php_version, PHP_VERSION, 'https://wordpress.org/support/upgrade-php/' ),
		],
	],
];