There could be some thing blocking all PHP processes from serving request.
When it happens, you can strace the PHP process see what it is doing.
strace -tt -T -s200 -v -p <pid_of_lsphp_process>
If it is waiting on a file handle, use "lsof -p<pid_of_lsphp_process>" to find out what is the file...