WordPress Memory Size Error Message

WordPress Memory Size Error Message”
Ever tried installing a plugin only to be faced with message or similar

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 20 bytes) in /—/—-/—-/yourblogtools.com/—-/wp-admin/menu.php on line 142

This simply means, memory allocated to PHP, is running low. If you’re running WordPress, reducing the number of wordpress plugins you have installed should help reduce the load.

Alternatively, you can try increasing your memory limit.
Simply, open your wp-config.php file and include the following line of code in the declaration section

define(‘WP_MEMORY_LIMIT’, ’64M’);

WordPress Memory Size Error Message

Instructions

Before editing any source file – always backup your work.

(1) Locate your wp-config.php This can be found within WP Content folder.

(2) Using notepad or your favourite editor, include the following in the declaration section (Authentication Unique Keys).

define(‘WP_MEMORY_LIMIT’, ’64M’);

You can always increase the size to suit your requirements.