Fatal error: Allowed memory size of 8388608 bytes exhausted

PHP Fatal error: Allowed memory size of X bytes exhausted (tried to allocate Y) in file.php 1. memory_limit globally from php.ini memory_limit = 64M 2. memory_limit using .htaccess php_value memory_limit 64M 3. memory_limit inside a php script. ini_set(‘memory_limit’, ’64M’); To change the memory limit for one specific script by including a line such as this … Read more