Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 4 down vote accepted

You would have to set DEFAULT_LIMIT_REQUEST_LINE constant inside of the apache source code, and recompile apache. This constant is in the httpd.h header file.

After this is done you can decrease request limit using the LimitRequestLine directive.

See the http://httpd.apache.org/docs/2.0/mod/core.html#limitrequestline for more info.

share|improve this answer

The best answer is "don't do that". See http://www.boutell.com/newfaq/misc/urllength.html for an explanation of why.

If you need to pass that much data, use POST, not GET.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.