Thanks to everyone who explained to me that if I need to use a seperate database for my members then I need to use the Members API.
I've set Const blnMemberAPI = True and Const blnMemberAPIDisableAccountControl = True (searching thru past postings I got the impression that the both had to be set to true).
I created a simple test page that sets the user and password by doing this:
<%
session("USER") = "test"
session("PASSWORD") = "user"
%>
I've even added this code to be sure the sessions were set:
Your name <%Response.Write(Session("user"))%>
Your Password <%Response.Write(Session("password"))%>
I can see that both variables are displaying the correct information but when I go to the forum, the user is not logged in or created.
What am I missing?
Thanks,
Joe