Hi @esachs44,
Thank you for reaching out!
The issue is caused by the RAM memory limit configuration.
Because your WP_MAX_MEMORY_LIMIT is set to 256 MB (which is the default value and you need to override it in wp-config.php) our plugin assumes that there are 256 MBs of free RAM memory, but in reality, there is a hard limit of 40 MBs, best solution for you would be to increase memory limit to 256 MBs in your php.ini configuration, that would resolve all issues or set correct value for WP_MAX_MEMORY_LIMIT in wp-config.php to “40M”.
After all, running WordPress with only 40 MBs of RAM is quite challenging and may make the website unstable.
You need to increase the memory_limit variable in your php.ini configuration, the most recommended value for you is “256M”.
Let me know how it goes afterwards. Thank you!