Hi,
I'm trying to use the member api to sincronyze registration in mywebsite and in the forum.
It works well during the first access... then, if i do a logout, and I try to access through mywebsite... the login access is not automatic.
I did this in the function_member_API.asp:
Session("USER") = Request.Cookies("mysite")("nome")
Session("PASSWORD") = Request.Cookies("mysite")("pwd")
Session("EMAIL") = Request.Cookies("mysite")("email")
Const blnMemberAPI = True
Const blnMemberAPIDisableAccountControl = True
What i must to change to get an automatic login using the API ?
Thanks in advance.