what is root cause of 'child pid 10708 exit signal Segmentation fault (11)' error?

10,888

It is entirely possible that your memory_limit variable in your php.ini may cause this problem. It certainly did in my case.

By lowering the memory_limit, I was able to resolve these errors.

Share:
10,888

Related videos on Youtube

Manojkumar
Author by

Manojkumar

Full stack web developer

Updated on May 25, 2022

Comments

  • Manojkumar
    Manojkumar about 2 years

    I am getting more and more child pid 10708 exit signal Segmentation fault (11) errors. what is the root cause of it and how to fix it ?

    Is php ini memory is associated with this?

    I am using apache2 server with php.

    Thanks in advance.

  • Curtis Gibby
    Curtis Gibby over 10 years
    I had similar issues wherever I was doing ini_set('memory_limit', -1) (that is, no memory limit). Removing those instances resolved the problem for me.