Christian Vigh - 2017-03-09 12:18:40 -
In reply to message 10 from Shyjo
I may have found what makes your Apache server crash.
On Unix platforms, the stack size for threads is 8Mb ; on Windows, it is only 1Mb.
Since my class heavily relies on regular expressions, this can make this limit of 1Mb to be insufficient and cause Apache to crash.
You will have to enable the Apache mpm module in your httpd.conf file to be able to set a new maximum stack size :
Include conf/extra/httpd-mpm.conf
ThreadStackSize 8388608
This should fix your issue.
Christian.