• Hi,

    When trying to install plugins and use Apture on my site I keep on getting fatal error messages the following being a prime example

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 33587 bytes) in D:\Hosting\5511879\html\wp-includes\http.php on line 1358

    I have double checked my hosting and it is unlimited bandwith etc so am stumped as to why it is saying I have no memory.

    Have tried logging on and off, refreshing etc but no joy.

    When I just try to make a post with just text and nothing else, I get this error message

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 393216 bytes) in D:\Hosting\5511879\html\wp-content\plugins\google-sitemap-generator\sitemap-core.php on line 1979

    Any suggestions as to how to fix this as this is my best performing website and I cannot do anything at the mo! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Check with these solutions:

    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.

    Thanks,

    Shane G.

    Thread Starter macostello

    (@macostello)

    Hi Shane,

    Thanks for responding.

    managed to get into my.htaccess to edit and it has the followwing. Where exactly do I add what you have suggested?

    RewriteEngine on

    RewriteRule ^(news)$ index.php?section=$1 [L]
    RewriteRule ^news/(.*).html$ index.php?section=news&news=$1 [L]

    RewriteRule ^(press)$ index.php?section=$1 [L]
    RewriteRule ^press/(.*).html$ index.php?section=press&news=$1 [L]

    RewriteRule ^(products)$ index.php?section=$1 [L]
    RewriteRule ^products/(.*).html$ index.php?section=products&news=$1 [L]

    RewriteRule ^(blogs)$ index.php?section=$1 [L]
    RewriteRule ^blogs/(.*).html$ index.php?section=blogs&news=$1 [L]

    RewriteRule ^(forums)$ index.php?section=$1 [L]
    RewriteRule ^forums/(.*).html$ index.php?section=forums&news=$1 [L]

    RewriteRule ^(article)$ index.php?section=articles&nop=$1 [L]

    RewriteRule ^(auctions)$ index.php?section=$1 [L]
    RewriteRule ^auctions/(.*).html$ index.php?section=auctions&news=$1 [L]

    RewriteRule ^(videos)$ index.php?section=$1 [L]
    RewriteRule ^videos/(.*).html$ index.php?section=videos&news=$1 [L]

    RewriteRule ^(podcasts)$ index.php?section=$1 [L]
    RewriteRule ^podcasts/(.*).html$ index.php?section=podcasts&news=$1 [L]

    RewriteRule ^article/(.*).html$ index.php?section=articles&title=$1 [L]

    Secondly, likewise in the config.php, I have the following. Where exactly do I put what you have suggested?

    <?php
    //website keyword – this is the default keyword
    $keyword_default = “Honeybee”;

    //your adsense pubid
    $adsense_pubid = “pub-1316210434060830”;
    ?>

    My apologies if I sound a little dim but this is a huge learning curve for me.

    Thanks Shane

    Michelle

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘fatal Error Message when trying to install plugins’ is closed to new replies.