| |

WordPress Memory Exhausted Error


Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx
 WordPress Memory Exhausted Error – Increase PHP Memory

To solve this problem need to increase PHP memory limit:

First, you need to edit the wp-config.php file on your WordPress site. It is located in your WordPress site’s root folder, and you will need to use an FTP client or file manager in your web hosting control panel.

Next, you need to paste this code in wp-config.php

1define( 'WP_MEMORY_LIMIT', '512M' );

This code tells WordPress to increase the PHP memory limit to 512MB.

Another alternative way to increase memory limit , you can edit Edit your PHP.ini file

Here, just you need to declare the increased memory limit

memory_limit = 512M

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *