Theme requirements
Recommended
PHP version 8.1 or greater (8.0 EOL 25 Nov 2023)
MySQL version 5.6 or greater OR MariaDB version 10.1 or greater.
HTTPS (SSL) support.
PHP configuration limits
max_execution_time
900
memory_limit
256M
post_max_size
64M
upload_max_filesize
64M
max_input_vars
2000+
WordPress memory limit
define( 'WP_MEMORY_LIMIT', '256M' ); WordPress memory can be different from the server – you need to set this regardless of server memory settings
https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Increasing the WordPress Memory Limit
1. Edit your wp-config.php file and enter something like:
WordPress memory can be different to the server – you need to set this regardless of server memory settings
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
2. If you have access to your PHP.ini file, change the line in PHP.ini If your line shows 32M try 256M:
3. If you don’t have access to PHP.ini try adding this to the .htaccess file:
4. If none of the above works, then talk to your hosting provider.
Last updated