Ok, I have decided to migrate the salt system to my user system on my website. In the coding for the salt system I've come up with.. this is how is randomly sets a salt:
PHP Code:
$salt = md5(rand(1,5000) * rand(1,5000) * rand(1,5000));
$password = md5($password . $salt);
I would 'NOT' be using the vbulletn registration system, it would all be done through my website. So.. if everyone of my useres reset their password (which I would include the whole salt thing when its done) it would update for the site system, and the forum?
Right?