The requested URL's length exceeds the capacity limit for this server?

http, url

Solution

- On the receiving end you normally receive a `414 Request-URI Too Long`-header.

- No it cannot be increased at runtime. And in Apache, if you use that as a webservers, you can limit it to something below the default 8190 bytes, but not to something above it without changing the source code & recompiling.

- Yes, is it server dependent, and even UA-dependent, and if you run `Suhusoin` with `PHP`, even more possible rules apply.

- If you need to ask "What is the maximum lenght of an url?", you actually need to ask: "Why are these not POST values?".

Problem

Is there any way to detect when URL's length is exceeded? This is causing after sending large number of query variables in query string. Can it be increased at run time? It seems dependent on server configuration & what is maximum length for URL?

Original source