• Hi, each time I add some plug-ins I notice this in my Dashboard. Now it shows up under the Incoming Links, Plugins and WP Development Blog boxes:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 491520 bytes) in /home/hinty/public_html/wp-includes/class-simplepie.php on line 9906

    Everything seems to run, but I wonder if I’m headed for a crash. Is it necessary to attend to this right away?

    Thanks
    https://arthurhinty.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • 1. Try adding this line to your wp-config.php file:
    define('WP_MEMORY_LIMIT', '64M');
    
    2. If you have access to your PHP.ini file, change the line in PHP.ini
    If your line shows 32M try 64M:
    memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
    
    3. If you don't have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 64M
    
    4. Talk to your host.

    Hi,

    1) Either rename/remove Plugins folder via FTP or disables all the Plugins from database. Refer this article…

    2. If you have an access of PHP.ini file of the account/server then change the line in PHP.ini where line shows 32M to 64M:
    memory_limit = 64M; Maximum amount of memory a script may consume (64MB)

    3. If you do not have access of PHP.ini file then add this to an .htaccess file of your domain:
    php_value memory_limit 64M
    4. Try to add this line to your wp-config.php file to increase allocated memory to PHP:
    define(‘WP_MEMORY_LIMIT’, ‘64M’);

    If all this option can not resolve the issue then you need to contact your hosting service provider to resolve this issue.

    Thanks,

    Shane G.

    Hi-
    I tried all the above solutions and nothing worked. So I contacted my hosting provider, they increased the allocated memory to PHP, and everything works fine. So if there are others out there struggling with this, a quick e-mail to your provider’s support crew should fix. Thanks for your help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘fatal error’ is closed to new replies.