This webpage has a redirect cycle (ERR_TOO_MANY_REDIRECTS)

We have a site that does not work in Google Chrome V44. It works well in IE and Firefox. Suddenly after updating the Chrome browser to V44, we can’t log in and just get this problem. We are trying to understand why this is happening. We have 2 instances of our system on our server. Our live site is one that doesn't work in Chrome V44, and the other - our demo site is fine. The only difference between these sites is that our live has SSL. Thus, our first impression is that the issue with Chrome V44 is related to our certificate site.

I think Chrome cannot establish a secure connection to the site.

Has anyone experienced this problem?

Please, help. Thanks.

+5
source share
5 answers

This is due to SSL in Chrome V44, where it does not correctly send the HTTP_HTTPS header that must be set, however the HTTPS header is still set correctly. This has been widely reported: http://www.zdnet.com/article/brand-new-chrome-44-release-added-a-bug/ https://ma.ttias.be/chrome-44-sending- https-header-by-mistake-breaking-web-applications-everywhere /

To stop this, in PHP, I added the following to the very top of my index.php file:

<?php if (!isset($_SERVER['HTTPS'])) { $_SERVER['HTTP_HTTPS'] = 0; } ?> 

Ensuring no gap between? > and next

+1
source

In this case, I would say that this is an internal problem with setting up the organization. I would speak with your SysAdmin or IT staff. But to be sure, use your ISP or cafe nearby, mostly something off-line, to see if you can reproduce the error.

0
source

The problem with my MVC solution was that I recently updated Nuget packages in my solution. After the update, I forgot to update

  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> 

with the new dll bindings that were installed during the upgrade. Therefore, on my hosting server, due to a connectionstring problem, I did not overwrite the current .config file. So, as soon as I did the update in the assemblyBinding section of the .config file, the problem disappeared.

0
source

There can be many reasons for a redirect cycle. If you are sure that your installation was completed correctly, without any errors, this may be a problem with your browser. You can try the following

  • Removing Cache and Cookies
  • Correction of your system time (if it is not installed automatically)
  • Browser reset

A source

0
source

You can solve this problem, try clearing cookies in your browser.

  • Open the Chrome browser.
  • Type "chrome: // settings / clearBrowserData" in the address bar and press Enter.
  • Make sure you clear the items from the Beginning of Time. Then select Cookies and other site data. Click the Clear Browsing Data button.

If found from a Google search, this tutorial can help you https://windows10freeapps.com/fix-err_too_many_redirects-error-google-chrome-browser

0
source

All Articles