Quote:
Originally Posted by vbSuperfan
I coding a small, simple light-weight PHP application (that is, I would like to avoid having to make it a full fledged "product"/plugin for vBulletin 5 Connect at this point) which must access the userid (and subsequently, username and usertitle) of the currently logged-in user in the vBulletin 5 Connect instance that is running on the same domain (that is, my PHP app will have access to the cookies of this vBulletin instance too).
My question is, what would be the simplest and most efficient way to get hold of this currently-logged-in-user-in-vBulletin information from this stand-alone PHP application of mine?
!
|
This is working for me (vb562 using vb API) look below. When calling the API the currently logged in user session also gets updated

The sessions are stored in the database (prefix_session)
PHP Code:
// Path to your vBulletin installation
$vbpath = 'xxxxxx';
define('CSRF_PROTECTION', false);
require_once($vbpath . '/includes/vb5/autoloader.php');
vB5_Autoloader::register($vbpath);
vB5_Frontend_Application::init('config.php');
$userid = vB::getCurrentSession()->get('userid');
$user_info = vB_User::fetchUserinfo($userid, 0, false, false);
Now You could grab the usertitle from $user_info array
$user_info['usertitle']