I don’t know much about it, but I did a little digging around SOEN, I decided to bring a translation, to see if I can help someone.
Possible solutions:
Increase the buffering output
According to the answer given by the author of question no SOEN, he set up the php.ini
, increasing the size of output_buffering
. When asked about "what output buffer has to do with it," he justified himself using this reply;
Configure USE_ZEND_ALLOC:
According to one of the answers to the above question, the problem was solved using the command in the bash
:
export USE_ZEND_ALLOC=0
A suggestion to set this variable in the file /etc/apache2/envvars
was given in a comment of the reply in the SOEN
Disable the opcache:
According to one of the answers, by disabling the opcache
, the problem has been solved:
opcache.enable_cli=0
Actually in the title the error is correct, but in the body it was wrong (I wrote "zend_mm_head"). Now it should get a little easier to try to figure out the cause :)
– Rodrigo Rigotti