-1

This link works just fine: first link

While this one reponds with empty page: second link

enter image description here

What can be the problem?
Is the URL too long?
Or is something wrong with the GET parameters I provided?

The site is built with Wordpress, and I'm using the latest version of Chrome browser.

Tinwor
  • 7,765
  • 6
  • 35
  • 56
Sergey
  • 47,222
  • 25
  • 87
  • 129
  • If your URL was too long, you would be getting an error message. WordPress already uses a GET parameter to pass the current content and hides it with URL rewrite. Try adding & instead of ? – Laurent Meganck Oct 29 '16 at 01:19
  • I just tried it repeatedly, and it's definitely related to the length of the URL. You can shorten it a bit and remove one character and it works fine, add one character and it breaks. This is a new one I haven't seen before.. URL maximums are supposed to be around like 8000 characters! – Greg Burkett Oct 29 '16 at 01:42
  • @Greg not really ... http://stackoverflow.com/a/417184/1427878 – CBroe Oct 29 '16 at 02:46

1 Answers1

2

It seems to be a server configuration issues. The web page returns a 414 code, which means the request-URI is too long. More details are available here: https://httpstatuses.com/414.

You are using Apache, maybe the following link could help you. Quickly, you need to increase LimitRequestLine configuration in your httpd.conf. If the configuration doesn't exist, you can add it at the bottom of your httpd.conf. The default value of LimitRequestLine is 8190.

Answer : https://stackoverflow.com/a/2891598/1164005

Francis Chartrand
  • 167
  • 1
  • 1
  • 15