Apache error [notice] Parent: child process exited with status 3221225477 — Restarting

前端 未结 13 879
别跟我提以往
别跟我提以往 2020-11-29 04:55

I\'m using PHP5, CodeIgniter and Apache. The localhost php pages were loading fine and then suddenly they started crashing Apache.

The web pages seem to get to diff

13条回答
  •  既然无缘
    2020-11-29 05:01

    This problem often happens in Windows because of smaller Apache’s default stack size. And it usually happens when working with php code that allocates a lot of stacks.

    To solve this issue, add the following at the end of apache config file, httpd.conf

    
        ThreadStackSize 8888888
    
    

    AND restart apache. i take this solution from this site.

提交回复
热议问题