Link to home
Start Free TrialLog in
Avatar of jimmylew52
jimmylew52Flag for United States of America

asked on

Forms login stays on login page after login,

I have a web app that works fine on 2003R2 server but when I moved it to 2008R2 I cannot get off of the login page.
I enter the UID and password but it returns to the login page when I press enter.  It does not do this on the 2003R2 server.

I am using forms authentication. Any ideas on how to fix this.
Avatar of Shalom Carmel
Shalom Carmel
Flag of Israel image

Are any errors logged?
>>when I press enter
Does it do the same when use mouse click the OK button ?
Jimmy,

Please tell us more about your web app:
Is it a self developed app or a commercial one?
Were there any updates to the app code?
It is IIS? Which version?
Is the server fully updated?
Is the code in .net? php? java?
How are users authenticated? AD? LDAP? Database?

Places to look:
Check if the server's firewall permits traffic to the user repository. For example, if the authentication is via ldap to Active directory, does the fw allow egress ports 389 and 636 to the AD server?
Avatar of jimmylew52

ASKER

Are any errors logged?   >>  No

Does it do the same when use mouse click the OK button ?   >>  no OK button but it does the same when I click the login button

Is it a self developed app or a commercial one?  >>  Self developed
Were there any updates to the app code?  >>  The latest version is installed
It is IIS? Which version?                          >>  7.5
Is the server fully updated?                >>  Yes
Is the code in .net? php? java?                >>  .NET
How are users authenticated? AD? LDAP? Database?   >>  forms Authentication

Firewall is off. UAC is off.

After some reading it is possibly a redirection problem. The application redirects and I am trying to find out where redirection is set up in IIS 7.
ASKER CERTIFIED SOLUTION
Avatar of Shalom Carmel
Shalom Carmel
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It was a redirection problem. The application redirects and I had IIS redirecting. Put the default page for the primary file in IIS and the problem is solved

Thank you for helping me get through this.
This comment led me to the correct solution