• Resolved nyxmidnight

    (@nyxmidnight)


    When trying to activate Subscribe2 version 5.9 on a fresh upgrade of WordPress 3.0, I get the following error:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 368640 bytes) in /var/www/vhosts/[domain]/httpdocs/wp-content/plugins/subscribe2/subscribe2.php on line 1780

    I have used the define('WP_MEMORY_LIMIT', '64M'); in the config file trick I had found on another post in this forum but it doesn’t help. Even allocating 96M is not enough for the gluttonous plugin.

    Where do I go from here? Please help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator James Huff

    (@macmanx)

    Unfortunately, editing wp-config.php doesn’t always work. Here are three other ways to increase PHP’s memory allocation:

    1. 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)
    
    2. If you don't have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 64M
    
    3. Talk to your host.
    Thread Starter nyxmidnight

    (@nyxmidnight)

    Thank you SO MUCH!!! Method #2 worked and it didn’t turn the blog into a white page.

    Moderator James Huff

    (@macmanx)

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Subscribe2] Fatal Error’ is closed to new replies.