3

I'm facing an issue where the parser is going out of memory -

  • /nikic/php-parser/lib/PHPParser/Node/Expr/Identical.php on line 25

  • /nikic/php-parser/lib/PHPParser/Parser.php on line 1044

And this is happening when I'm sending an email at that too in only a scenario.
I'm trying to understand what Laravel is trying to do here, so I can resolve this issue.

Laravel version 4.0
PHPHarser verison 0.9

Community
  • 1
  • 1
PlanetUnknown
  • 3,956
  • 4
  • 49
  • 67

1 Answers1

1

Your memory limit is set a 32 megabytes. This is extremely low. The amount of information that is being processed in your script is simply greater than that amount.

The correct solution is to increase your memory limit.

Lance Pioch
  • 1,147
  • 6
  • 18