• Resolved velvetpixel

    (@velvetpixel)


    My php memory limit is set at 64MB and a info.php file confirms this.

    I have define(‘WP_MEMORY_LIMIT’, ’64M’); in my wp-config.php file.

    I am still getting errors like this:
    Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 76 bytes) in /home/voltc/public_html/wp-includes/load.php on line 552

    What am I doing wrong?

    This is for WP 3.0

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

    (@macmanx)

    Not all memory bump techniques work on all servers.

    Here are three more 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 velvetpixel

    (@velvetpixel)

    Did you read the first line of my post?

    Thanks for trying though ??

    Turns out it’s an issue with the flickerRSS plugin. I just moved to a new server with the latest apache, php, mysql and this plugin is not happy! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘php memory limit issue’ is closed to new replies.