This question already has an answer here:
Got this error on a big $_GET
query in size ~9 000 symbols (they are divided into ~10 variables).
Request-URI Too Large
The requested URL's length exceeds the capacity limit for this server.
What is a workaround for this problem?
This worked for me (it needs formData support):
Well an URI actually have a character limit depending on several things. You can check it out at
One workaround is to use POST instead of GET if you are the one developing the server too.
There is no workaround if you want pass all these info with GET without change server configuration.
Other solutions: