POSTリクエストが原因でapacheのインストールに問題があります。
Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data.
または
Error 115 Connection Reset
以下の基本的なテストを設定しましたが、apacheは毎回失敗します。誰もがこれを引き起こしている可能性があることについての考えを持っていますか?ありがとう!
<?php
// Note: This is running on my localhost:8080
if(isset($_POST)) print_r($_POST);
?>
<!DOCTYPE html>
<body>
<form method="post" action="posttest.php">
<input type="text" name="test" value="test" />
<input type="submit" />
</form>
</body>