1.1 Requirements

This theme requires the following:

  • WordPress 4.7 or higher
  • MySql 5.6 or higher
  • PHP 7.0

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

  • CURL enabled
  • .htaccess
  • ModRewrite ON
  • upload_max_filesize: 128M (to support upload of Podcasts in mp3)
  • memory_limit: 128M
  • post_max_size: 128M (to support upload of Podcasts in mp3)
  • max_execution_time: 240 seconds

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 128M
php_value post_max_size 128M
php_value upload_max_filesize 128M
php_value max_execution_time 1800

2. add thiss to wp-config.php
define(‘WP_MEMORY_LIMIT’, ’64M’);

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

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.

Related Articles