
WooCommerce's minimum server memory requirement is 64MB. If your memory limit is below 64MB, you need to increase the server's minimum memory limit yourself.

If you want to increase the WordPress memory limit, the method is also very simple. You just need to modify the website's wp-config.php file and insert the following code snippet, then save it.
define( 'WP_MEMORY_LIMIT', '256M' );
For more methods, you can refer toofficial tutorial。