Chrome Error Too Many Redirects Solved
chrome error too many redirects this is happen Often, when a script has a redirect loop we get an error in Google Chrome that says the following lines, it means google redirecting is very large and can't handle.
- Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
Solution 1
Clear the history of your browser like this image shown, you must remove every thing.
Solution 2
Google Chrome 17.0.963.56 allows a maximum of 20 redirects, as tested with this PHP script:
<?php
$redirect = (isset($_GET['redirect'])) ? $_GET['redirect'] : 0;
header("Location: redirects.php?redirect=" . ($redirect + 1));
?>
Chrome aborts with error 310 when trying to open redirects.php?redirect=21, which means that the first 20 redirects were successful.
Solution 3
Tested on Win 7 64bit
Chrome 49 *32bit* ↷ 55.0.2883.87 m, 21 redirects
Chrome Canary 49 *32bit* ↷ 57.0.2944.0, 21 redirects
Firefox 43 ↷ 50.0.2, 20 redirects
IE 8, 11 redirects (webpagetest.org)
IE 9, 121 redirects (webpagetest.org)
IE 10, 121 redirects (webpagetest.org)
IE 11, 110 redirects
Opera 28, 21 redirects
Opera 36, 21 redirects
Safari 5.1.7, 16 redirects
(Google Nexus 5, Samsung Galaxy S5, Galaxy Tab 4), 21 redirects
0 comments:
Post a Comment