Hello,
Thanks for the details!
The “Allowed memory size of XXXXXXXX bytes exhausted” is a common server error. It means PHP ran out of memory while trying to display a page. Typically, every PHP script, plugins, custom code etc… add a load on your server’s RAM memory. Your error message suggest your current memory limit is set to 128MB (134217728 bytes).
The more complex your site (Woocommerce, ACF etc…), the more likely you are to reach this limit. It seems like ACF Extended is the one that show this limit. But in reality, it could be any additional plugin. You could disable ACF Extended, and add some new plugins and see the exact same error. This is why Forminator is displayed in your error message and not ACF Extended. The problem is “the global load”, not one specific plugin/code.
For complex WordPress websites, it is recommended to increase the default memory limit. For example, Woocommerce recommends it (see woocommerce documentation).
In order to increase your memory limit, add the following code in wp-config.php
before the /* That's all, stop editing! Happy publishing. */
comment:
define('WP_MEMORY_LIMIT', '256M');
/* That's all, stop editing! Happy publishing. */
This should fix the issue.
If the problem is still here, it might means you also need to increase the limit in your PHP configuration. To do that you need edit your php.ini
file, and update the following parameter:
memory_limit = 256M ; Maximum amount of memory a script may consume
If you don’t have access to your php.ini
, try to contact your hosting provider.
Let me know if that fixed the issue!
Regards.