• Resolved youneedahost

    (@youneedahost)


    Hi Guys. I am – obviously – new to a few things – one of them being allocating extra memory in my php files? I don’t know if that’s right or not but – I keep getting error messages eg:#

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes) in /home2/youneed2/public_html/blog/wp-admin/includes/class-wp-filesystem-direct.php on line 208
    and some others:

    Installing Plugin: Broken Link Checker 0.9.2

    Downloading install package from http://downloads.wordpress.org/plugin/broken-link-checker.0.9.2.zip.

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 280247 bytes) in /home2/youneed2/public_html/blog/wp-includes/http.php on line 1358

    ………..
    Installing Plugin: Contact Form 7 2.2

    Downloading install package from http://downloads.wordpress.org/plugin/contact-form-7.2.2.zip.

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate

    262575 bytes) in /home2/youneed2/public_html/blog/wp-includes/http.php on line 1358
    ……
    Installing Plugin: Deep Link Engine 1.7.3

    Downloading install package from http://downloads.wordpress.org/plugin/deep-link-engine.1.7.3.zip.

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 39131 bytes) in /home2/youneed2/public_html/blog/wp-includes/http.php on line 1358
    ….
    Installing Plugin: Google XML Sitemaps 3.2.3

    Downloading install package from http://downloads.wordpress.org/plugin/google-sitemap-generator.3.2.3.zip.
    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 42035 bytes) in /home2/youneed2/public_html/blog/wp-includes/http.php on line 1358
    Please can I get some advice on how to solve this problem?
    Thank you all, John.

Viewing 2 replies - 1 through 2 (of 2 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.
    Thread Starter youneedahost

    (@youneedahost)

    Thank you Samuel – it worked (after talking to my Host) and they said exactly what You said. Sorry it took me so long in getting back to Thank You. John.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Fatal error: Allowed memory size……’ is closed to new replies.