The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
function verify_authentication
can any tell me how/if i can use this function
function verify_authentication i have a 3rd party app and i want to use the vbulletin user db for validation |
#2
|
|||
|
|||
I got this working:
Code:
<?php // setup path to your forum and your username and password define('CWD', '/pathtoforum/'); $username = 'yourusername'; $password = 'yourpassword'; // end setup define('VB_AREA', 1); define('THIS_SCRIPT', 1); define('DIR', CWD); require_once(DIR . 'includes/init.php'); require_once(DIR . 'includes/functions_login.php'); $encrypted = md5($password); $c = verify_authentication($username, $password, $encrypted, $encrypted, true, true); if($c == true) echo 'logged in'; else echo 'logged out'; ?> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|