I've done a bit of php and I've had my fair share of "white pages of death".
Some friends are working on a server API which they want to implement with php. The APIs conceptually are independent modules. But they will be deployed on the same physical server running the same apache instance.
So my question: will those modules really be that independent? Would the "white page of death" not also possibly apply to APIs? They say they will have independent classes for each module, but my guess is they all will be running in the same php memory space - so if one of the modules has a severe flaw (in worst case a white page of death trigger), wouldn't this affect all the other modules as well, bringing them effectively down as well?
I apologize if I pose this question as a low-experienced php guy, and if more information would be needed in order to properly answer this question.
AFAIK they don't even use a framework, it's all handish.