• Resolved Baroness Tapuzina

    (@baroness-tapuzina)


    I have the following errors under two subheaders in my Dashboard.

    Under Plugins:
    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 24 bytes) in /home6/baroness/public_html/wp-includes/class-simplepie.php on line 14566

    Under WordPress Development Blog:
    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 71417 bytes) in /home6/baroness/public_html/wp-includes/functions.php on line 965

    What do I need to do to fix this?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Try increasing the memory for PHP and WordPress by putting this line in your .htaccess file:

    php_value memory_limit 64M

    or this line near the top of your wp-config.php file:

    define('WP_MEMORY_LIMIT', '64M');

    or in your php.ini, if you have access:

    memory_limit = 64M;

    Thread Starter Baroness Tapuzina

    (@baroness-tapuzina)

    Where do put this in the .htaccess file:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Thread Starter Baroness Tapuzina

    (@baroness-tapuzina)

    I tried increasing and it didn’t work.

    If you’ve tried increasing it and you are still getting errors, you may want to contact your web host and see if they can raise it for you.

    Deactivate all plugins, try this line near the top of your wp-config.php file:

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

    reactivate all plugins.

    Thread Starter Baroness Tapuzina

    (@baroness-tapuzina)

    Worked like a charm!!! Thank you!!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Dashboard Errors’ is closed to new replies.