Fix PHP unknown Error 324
When I debugged an PHP application, an mystery error message show up. Google Chrome shows the following message:
This webpage is not available.
The webpage at XXXXXX might be temporarily down or it may have moved permanently to a new web address.
More information on this error
After click the plus sign at the last sentence, I got the following error message:
Error 324 (net::ERR_EMPTY_RESPONSE): Unknown error.
I tried several ways to found what is going on. I failed to get any useful information. It is a mystery for me. I googled “PHP Error 324 (net::ERR_EMPTY_RESPONSE): Unknown error” and found the following page “http://bugs.php.net/bug.php?id=47948” at PHP.NET. Based on what I read on this page, I checked my code and found that I did initialize class A at the constructor of Class B and initialize Class B at the constructor of Class A. This kind of cyclic initialization of two classes generated the mystery error. After I removed initialization of Class B from Class A, the error was gone. I have to work out other solution to get around the dilemma.
This might be a bug in PHP release version. It seems that a complete solution has not found in the PHP development side.

[...] This post was mentioned on Twitter by DickDeals. DickDeals said: Fix PHP unknown Error 324 http://bit.ly/bzlsXn via @AddToAny [...]