1.1 Requirements

This theme requires the following:

  • WordPress 5.7 or higher
  • MySql 5.6 or higher
  • PHP 7.4 or higher

The theme also requires the following PHP libraries for an optimal performance:

  • CURL enabled
  • .htaccess
  • ModRewrite ON
  • upload_max_filesize: 512M (to support upload of mp4 videos)
  • memory_limit: 256M
  • post_max_size: 512M (to support upload of mp4 videos, no problem is instead you use only youtube or vimeo videos)

How to verify your server limits: please use this plugin https://wordpress.org/plugins/wordpress-php-info/.

 

If you see an error “Are you sure you want to do this”

or other memory or upload limit errors during the upload, please use one of these solutions (any server is different so one of these methods may work better than the others depending on the server settings)

1. add this in the .htaccess file of your server
php_value memory_limit 256M
php_value post_max_size256M
php_value upload_max_filesize 256M
php_value max_execution_time 1800

2. add thiss to wp-config.php
define('WP_MEMORY_LIMIT', '256M');

3. create a text file, call it php.ini and put this text in it:
upload_max_filesize =512M
post_max_size =512M

then upload it in the wordpress root folder

If you are still experiencing any issue, please contact your hosting provider and request an update of your PHP to  version 7. This will most probably solve all your limitations issue because latest php version has a much better performance and allows to bypass all the hardware limitations.

Was this article helpful?

Related Articles