• Below is the message I get on my dashboard. I contacted the hosting / server company and they tell me that it isn’t on their end, but a problem with the script. Any suggestions?????

    Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 98285 bytes) in /home/iaog/iaog-www/pres/blog/wp-includes/wp-db.php on line 168

Viewing 1 replies (of 1 total)
  • The problem is PHP ran out of memory for a process. If your host allows it you could edit your php.ini file. Most hosts set it at 8M. Look in php.ini for something like …

    memory_limit = 8M

    and change it to …

    memory_limit = 32M

    If you do not have access to that file you could try adding a line to your htaccess file as such …

    php_value memory_limit 32M

    Also, see this article in the Codex for editing your wp-config file. Scroll down to Increasing memory allocated to PHP
    https://codex.www.ads-software.com/Editing_wp-config.php

    If none of these suggestions work then you’ll have to ask your host to increase the memory limit – if they refuse start looking for a new host. ??

Viewing 1 replies (of 1 total)
  • The topic ‘Fatal Error – “Allowed Memory”’ is closed to new replies.