Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firefox The page isn't redirecting properly

When I go to a particular url on my asp.net-mvc-3 site I get this error in Firefox. The page in question is a login screen.

The page isn't redirecting properly

Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

This problem can sometimes be caused by disabling or refusing to accept cookies.

Chrome says

This web page has a redirect loop The web page at has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.

Here are some suggestions:
Reload this web page later.
Learn more about this problem.

Why might this be happening? After reloading a couple of times the problem does go away.

like image 826
Sachin Kainth Avatar asked Nov 15 '12 11:11

Sachin Kainth


1 Answers

Open Fiddler (download) and look at requests, you will find some count of HTTP redirects, then browser will stop and show such messages. You need debug your application, maybe this is some cross redirects, custom return url logic or anything else, without code it's hard to understand what is going on.

like image 110
webdeveloper Avatar answered Sep 28 '22 19:09

webdeveloper