Hello,
I am able to add a user to the jforum_users table using the
JDBC API as follows:
PreparedStatement s = conn.prepareStatement("INSERT INTO jforum_users (username, user_password, user_regdate) VALUES(?, ?, ?)");
s.setString(1, user);
s.setString(2, pw );
s.setTimestamp(3, myDate);
int count = s.executeUpdate(stmt);
However, the password field isn't encrypted. What do I need to do to encrypt this field so that it's compatible with the JForum UI Login page?
Thanks,
Jeff
[originally posted on jforum.net by netbracketsJeff]