Home › Toolset Professional Support › [Resolved] getting this error message I have never seen before
Problem:
Getting Fatal error: Allowed memory size
Solution:
In 99% this error is related to insufficient memory on your install and you can easily increase it by editing wp-config.php file and by adding following line of code:
define( 'WP_MAX_MEMORY_LIMIT', '512M' ); define( 'WP_MEMORY_LIMIT', '512M' );
You can find proposed solution, in this case, with the following reply:
=> https://toolset.com/forums/topic/getting-this-error-message-i-have-never-seen-before/#post-697473
Relevant Documentation:
https://codex.wordpress.org/Editing_wp-config.php
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Our next available supporter will start replying to tickets in about 5.71 hours from now. Thank you for your understanding.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
- | 10:00 – 13:00 | 10:00 – 13:00 | 10:00 – 13:00 | 10:00 – 13:00 | 10:00 – 13:00 | - |
- | 14:00 – 18:00 | 14:00 – 18:00 | 14:00 – 18:00 | 14:00 – 18:00 | 14:00 – 18:00 | - |
Supporter timezone: Asia/Kolkata (GMT+05:30)
Tagged: Content Templates, Types plugin, Views plugin
Related documentation:
This topic contains 2 replies, has 2 voices.
Last updated by mikeV-2 6 years, 7 months ago.
Assisted by: Minesh.
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 18084 bytes) in /home/theblvdcompany/public_html/wp-content/plugins/types/vendor/toolset/types/embedded/views/image.php on line 486
Hello. Thank you for contacting the Toolset support.
Its related to memory issue. Looks like you need more memory with your WordPress install. Could you please try to add following lines to wp-config.php just before the database configurations and try to resolve your issue.
define( 'WP_MAX_MEMORY_LIMIT', '512M' ); define( 'WP_MEMORY_LIMIT', '512M' );
More info:
=> https://codex.wordpress.org/Editing_wp-config.php
That did it! thx:)