google chrome - This webpage has a redirect loop (ERR_TOO_MANY_REDIRECTS) -
we have site not working in google chrome v44. works in ie , firefox. of sudden after updating chrome browser v44, unable login system , receiving problem. we're trying figure out why happening. have 2 instances of our system in our server. our live site 1 not working in chrome v44 while other - our demo site fine. difference of these sites our live has ssl. our first impression there's problem chrome v44 our site certificate.
i think chrome can't establish secure connection site.
has experienced issue?
please help. thanks.
this due ssl in chrome v44 incorrectly sends http_https header set, https header still set correctly. has been quite 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/
in order stop this, in php, added following top of index.php file:
<?php if (!isset($_server['https'])) { $_server['http_https'] = 0; } ?>
ensuring there no space between ?> , next
Comments
Post a Comment