[Vtigercrm-developers] Scheduled import error: exceeding memory limit

Adam Heinz amh at metricwise.net
Fri May 11 10:22:53 PDT 2012


On Fri, May 11, 2012 at 12:30 PM, Alan Lord (News) <alanslists at gmail.com> wrote:
> PHP Fatal error:  Allowed memory size of 67108864 bytes exhausted

This is systemic of many PHP applications.  Due to the require_once
nature of imports, after a while you tend to include the world on
every page load.  One of the better efforts I've seen to combat this
is the jimport/autoload architecture in Joomla!, which makes all class
loading lazy.  The primary advantage of this is that you get your
memory consumption down, but at the expense of run time errors if you
don't keep your imports squeaky clean.



More information about the vtigercrm-developers mailing list