Php Error

Hi,

I received below error of webshop storefront , but in public_html I do not find anything on line 36 on #init.php file...

Fatal error: Allowed memory size of 262144 bytes exhausted (tried to allocate 3200 bytes) in /home/7/public_html/init.php on line 36

Try to add the following line to the config.local.php file:

@ini_set('memory_limit', '512M');

after the following code:

if (PHP_INT_SIZE == 4 && (substr(ini_get('memory_limit'), 0, -1) < "64")) {
  // 32bit PHP
  @ini_set('memory_limit', '64M');
} elseif (PHP_INT_SIZE == 8 && (substr(ini_get('memory_limit'), 0, -1) < "256")) {
  // 64bit PHP
  @ini_set('memory_limit', '256M');
}