Is there a change in version 4 with the utilization of the FormsAuthenticationTicket? I have integrated InstantForums with our site which uses Forms Authentication. Since switching to umb 4, this integration has broken.
In examining the forms cookie, I notice that value stored in the ticket for the name is the same as my Umbraco user names where it should be (for my forum to work), the forum's user name.
Am I correct that there is a change in the use of the FormsAuthenticationTicket?
v4 and Forms Authentication change???
Is there a change in version 4 with the utilization of the FormsAuthenticationTicket? I have integrated InstantForums with our site which uses Forms Authentication. Since switching to umb 4, this integration has broken.
In examining the forms cookie, I notice that value stored in the ticket for the name is the same as my Umbraco user names where it should be (for my forum to work), the forum's user name.
Am I correct that there is a change in the use of the FormsAuthenticationTicket?
Thanks,
Tom
Found my own answer:
umbraco.cms.businesslogic.member.AddMemberToCache sets a formauth cookie
FormsAuthentication.SetAuthCookie(m.LoginName, false);
Version 3 didn't do this...
Hi Tom,
Version 4 uses a normal ASP.Net Membership provider now, so yes it's changed,
is working on a reply...