Link Search Menu Expand Document

Server Requirements for Chillax

To run Chillax, we recommend be the latest version of WordPress is up and running. If you are not with latest version of WordPress just make sure you are running at least WordPress 5.8 or higher.

WordPress recommend:

  • PHP version 7.4 or greater.
  • MySQL version 5.6 or greater OR MariaDB version 10.1 or greater.
  • HTTPS support

To know more about wordpress recomendation. See More.

Increasing the WordPress Memory Limit for WooCommerce

To address memory limit issues, there are two paths:

  1. Do It Yourself
  2. Contact Your Host

Do It Yourself

To adjust on your own, here are some methods to try. Be aware that this section requires advanced knowledge; it is not basic.

Edit your wp-config.php file

Add this to the top, before the line that says, “Happy Blogging”:

define('WP_MEMORY_LIMIT', '256M');

WordPress memory can be different from the server – you need to set this regardless of server memory settings

Read More About Editing wp-config.php

Edit your PHP.ini file

If you have access to your PHP.ini file, change the line in PHP.ini If your line shows 64M try 256M:

memory_limit = 256M ; Maximum amount of memory a script may consume (64MB)

Edit your .htaccess file

If you don’t have access to PHP.ini try adding this to an .htaccess file:

php_value memory_limit 256M

Contact Your Host

Should you not feel comfortable in trying the above methods, or the above did not work for you, you need to talk to your hosting about having them increase your memory limit.