PDA

View Full Version : Utilizing Username & Password Fields for another systems


Mohajer
08-23-2007, 11:37 AM
Hello ,
How i can use vbulletin Username & Password Fields for my new program ?


For example in my script i use below code for identity users:
( Only Example )



$user = $_POST['uname'];
$pass = md5($_POST['upass']);
$auth=mysql_query("SELECT passowrd FROM user WHERE username='$user' ") or die(mysql_error());

if(mysql_num_rows($auth) == 1)
{

...........


}else {
...........

}




Now , how it possible i change my script for use vbulletin username/password Fields for identity my vbulletin users in non vbulletin scripts ?

Thank you.

Mohajer
08-24-2007, 07:12 PM
there is any way to do it without use any vbulletin files and system ?

Mohajer
10-16-2007, 11:57 PM
for example my password is "123asd" , then how vbulletin hash it for insert in "password" field in "users" table ?
its only md5(md5($password)) ?

i need to know only this method then i can identity users in others site sections.
Thank you.

Dismounted
10-17-2007, 06:44 AM
$password = md5(md5($password) . $salt);