2

Linux Apache2 Web サーバー上のフォームを満たすすべての Web サイトが、最初の実行後にのみ 413 Request Entity Too Large Error を返しているため、スタックしています (更新すると機能します)。エラーは次のようになります。

Request Entity Too Large

The requested resource
/mailman/subscribe/konrad
does not allow request data with POST requests, or the amount of data provided in the    request exceeds the capacity limit.

Request Entity Too Large

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

apache2 エラー ログは次のとおりです。

[Tue Dec 04 12:06:27 2012] [error] [client 5.184.118.16] Invalid Content-Length, referer:   http://62.87.177.20/mailman/admindb/konrad
[Tue Dec 04 12:06:27 2012] [error] [client 5.184.118.16] (-3)Unknown error 4294967293:    Error reading request entity data, referer: http://62.87.177.20/mailman/admindb/konrad
[Tue Dec 04 12:07:12 2012] [error] [client 46.134.87.133] Invalid Content-Length, referer: http://www.comfortzg.com/~lekumed2010/login.php?PHPSESSID=e6b9c4d160a2b06435bb8c0676acbe51

両方のスクリプト (PHP を使用するスクリプトと 2 番目の Perl (cgi) を使用するスクリプト) でエラーが発生します。私はSSLを使用していません。

4

1 に答える 1

0

GET http メソッドを使用してフォームが送信された可能性がありますが、ブラウザによって作成された URL が長すぎます。この場合、通常のサーバーの応答は HTTP エラー 413要求エンティティが大きすぎます。

この場合、POST メソッドを使用してこの問題を解決する必要があります。

于 2012-12-04T11:42:48.630 に答える