YAFLogo

danj6
  • danj6
  • 51.2% (Neutral)
  • YAF Forumling Topic Starter
16 years ago
Not sure if anyone else gets this problem, but i cant seem to login with any user in firefox. IE works a treat but firefox does not.

Does anyone have a solution for this?

Sponsor
Mek
  • Mek
  • 100% (Exalted)
  • YAF Developer
16 years ago
Try clearing all caches/cookies/whathaveyou. I use firefox as my main browser and no issues here.


UserPostedImage

"It's a case of RTFM.. the only problem being we don't have a manual!"

When I post FP:Mek in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Ederon 🙂 )

danj6
  • danj6
  • 51.2% (Neutral)
  • YAF Forumling Topic Starter
16 years ago
Yeah that fixed the problem.

Should have thought of that before :roll:

Thanks for the very speedy reply!

marinette3
13 years ago
This bedevils my less technical users who don't know how to clear cookies. I wrote the zapcooky page for this can't login issue, but it needs to be a button on the front login page.

this is the key code.

<%

HttpCookie myCookie = new HttpCookie(".YAFNET_Authentication");

myCookie.Expires = DateTime.Now.AddDays(1d);

myCookie.Path="/";

Response.Cookies.Add(myCookie);

FormsAuthentication.SignOut();

%>