• I have been having problem with my website, and this is the latest of all my problems. Can any one tell me what does this means? and how to solve it?

    Fatal error: Out of memory (allocated 7077888) (tried to allocate 19456 bytes) in /home/website/public_html/wp-includes/rewrite.php on line 1300

    Thanks,

Viewing 1 replies (of 1 total)
  • Moderator James Huff

    (@macmanx)

    The task that you were trying to run exceeded PHP’s memory allocation. Here are four 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. Try adding this line to your wp-config.php file:
    Increasing memory allocated to PHP
    define('WP_MEMORY_LIMIT', '64M');
    
    4. Talk to your host.
Viewing 1 replies (of 1 total)
  • The topic ‘Fatal error rewrite.php on line 1300’ is closed to new replies.