Hi, i installed the extension and is working great, i was just wondering if there is some setting to auto delete spammer accounts and posts?
2 2011-04-10 19:06
Re: How do I integrate PunBB into MY SITES EXISTING registration and login (2 replies, posted in PunBB 1.3 additions)
Hello, I'm also new here and i'm one of the developers of the http://futurelost.net game
It's currently beta, and i'm trying to integrate registration process.
Using add_user function i was able to register the user, but i can't login after?
I had to manually hash the password, is that ok?
What's the correct format for user password?
I used this code:
$forumpass = forum_trim($password);
$salt = random_key(12);
$password_hash = mysql_escape_string(forum_hash($forumpass,$salt));
Thank you very much for any help.