• Saw the below message on my dashboard. What does this mean? Newbie here!

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 221312 bytes) in /home/content/86/6786986/html/devgmppac/wp-includes/wp-db.php on line 1219

Viewing 1 replies (of 1 total)
  • Looks like your PHP memory_limit is set to 64MB. Make a info.php file with the following:

    <?php
    phpinfo();
    ?>

    Then execute it and look for the memory_limit value. Probably 64MB. Might try: https://codex.www.ads-software.com/Editing_wp-config.php#Increasing_memory_allocated_to_PHP to raise the limit to say 128MB.

    Depending on the host, they may have to raise it for you in the server’s PHP.INI file or let you place a custom PHP.INI in your blog’s directory that raises the memory limit.

    ;;;;;;;;;;;;;;;;;;;
    ; Resource Limits ;
    ;;;;;;;;;;;;;;;;;;;
    
    max_execution_time = 30
    max_input_time = 60
    max_input_vars = 1000
    memory_limit = 128M

Viewing 1 replies (of 1 total)
  • The topic ‘Fatal Error message’ is closed to new replies.