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

PHP Debug Log – Trace Errors

Hello Friends, I read some where “Quality is not a product.. it is a process 😉 ” I think process is hard-work we do and product is final result we get. But how we make our process to get a good product, as a LAMP developer I think track processes “Debug Log” is good sort … Read more