I am getting the following error on my Drupal site:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 205668 bytes)
.
To be sure, 268,435,456 + 205,668 = 268,641,124 bytes = 256.2 MB.
In my php.ini I have memory_limit = 2G
. I have verified that I am editing the correct php.ini file. When I xdebug the site and enter ini_get('memory_limit');
into the console, I receive 2G
for the output. So I know my file is being read correctly.
I've also checked my .htaccess
file to verify that there are no other memory directives in there. There are not. Where is this limit coming from?