chintansshah Posted August 12, 2011 Share Posted August 12, 2011 I am working on lovcalhost. After login I want to redirect it to my homepage.php but browser gives me below error. 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. After login.php, action is validation.php and if user enter correct value then it redirects to homepage.php Quote Link to comment https://forums.phpfreaks.com/topic/244588-problem-in-redirection/ Share on other sites More sharing options...
kney Posted August 12, 2011 Share Posted August 12, 2011 You can help us more by posting ur code. ty Quote Link to comment https://forums.phpfreaks.com/topic/244588-problem-in-redirection/#findComment-1256272 Share on other sites More sharing options...
codefossa Posted August 12, 2011 Share Posted August 12, 2011 After the login is successful, you can use a header redirection. header("Location: http://example.com"); Note: This must be done before anything is sent or it will just throw an error out at ya. Quote Link to comment https://forums.phpfreaks.com/topic/244588-problem-in-redirection/#findComment-1256282 Share on other sites More sharing options...
WebStyles Posted August 12, 2011 Share Posted August 12, 2011 are you redirecting to the same page based on a condition? (sounds like you page is looping). Please post all the relevant code. thanks Quote Link to comment https://forums.phpfreaks.com/topic/244588-problem-in-redirection/#findComment-1256333 Share on other sites More sharing options...
chintansshah Posted August 12, 2011 Author Share Posted August 12, 2011 Hello, I found the problem, actually in header file I write redirection code and it's added in login.php also Thanks guys for support. Problem resolved now. Quote Link to comment https://forums.phpfreaks.com/topic/244588-problem-in-redirection/#findComment-1256337 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.