• When I am in the admin panel of my blog and click on plugins/installed I get this error:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes) in /home1/traffic9/public_html/dickandjanemarketing/wp-includes/kses.php(413) : runtime-created function on line 1

    When I am in the admin panel of my blog and click on plugins/editor I get this error:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 71 bytes) in /home1/traffic9/public_html/dickandjanemarketing/wp-admin/includes/misc.php on line 278

    Where do I manually fix this memory issue.

    Thanks,
    lg.williams

Viewing 6 replies - 1 through 6 (of 6 total)
  • this is a searchable issue.

    have you read the sticky on the forums, or done any searching?

    may want to read this, if not:

    https://www.ads-software.com/support/topic/279132?replies=82

    Thread Starter lgwilliams-1

    (@lgwilliams-1)

    Thanks and sorry I did the usual (dumb thing) posted and then searched…my bad. I did get the problem resolved via a post and thanks for the heads up…I’ll remember to search first and ask later in the future.

    lg.williams

    No worries, you have a LOT of company ?? Most, if not everything, has been covered previously. The trick around here is finding it.

    Glad its working ??

    Hi,

    Check with these options:

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

    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.

    PS: increase the memory limit if this does not works…

    Thanks,

    Shane G.

    oora

    (@oora)

    I got the same issue and now resolved. I did this with my blog:

    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’);

    Thank You

    Great information, unfortunately or fortunately Google lands here first. It appears you only need to do one of these. Since I run multiple WordPress instances, I opted for changing the wp-config.php file, as noted:

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

    Thanks for the post.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Fatal Error with memory size’ is closed to new replies.