Skip Navigation

[Resolved] getting this error message I have never seen before

This thread is resolved. Here is a description of the problem and solution.

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 support ticket is created 6 years, 7 months ago. There's a good chance that you are reading advice that it now obsolete.

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)

This topic contains 2 replies, has 2 voices.

Last updated by mikeV-2 6 years, 7 months ago.

Assisted by: Minesh.

Author
Posts
#697208

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

#697473

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

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

#698528

That did it! thx:)