I am getting this error in my apache2 log:
[Tue Apr 06 09:00:56 2010] [error] [client A.B.C.D] request failed:
URI too long (longer than 8190)
What setting can I change to increase this limit?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You would have to set
DEFAULT_LIMIT_REQUEST_LINEconstant inside of the Apache source code, and recompile Apache. This constant is in thehttpd.hheader file.After this is done you can decrease request limit using the
LimitRequestLinedirective.See the http://httpd.apache.org/docs/2.0/mod/core.html#limitrequestline for more info.