vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   PHP - Using vB Logins on my website (https://vborg.vbsupport.ru/showthread.php?t=172273)

henrysommer 03-06-2008 05:59 PM

PHP - Using vB Logins on my website
 
I know this is an old question, but I searched the forum and couldn't come up with anything good. Here's what I'm doing right now...

PHP Code:

require_once '../forum/global.php';
  
global 
$vbulletin;

print_r($vbulletin->userinfo); 

...even if a user is logged in, the print_r shows me that [userid] => 0 [usergroupid] => 1 [username] => Unregistered.

I guess global.php does not check for active user sessions in the cookies?

How do I go about checking to see if a user is already actively logged in using PHP?

Opserty 03-06-2008 06:07 PM

Try:

PHP Code:

$cwd getcwd();
chdir('../forum/');
require_once(
'global.php');
chdir($cwd);

var_dump($vbulletin->userinfo); 


henrysommer 03-06-2008 06:11 PM

That did not work, I am still getting the 'Unregistered' username, and a userid of 0.

MoT3rror 03-06-2008 06:41 PM

Are you currently signed in when you check that page?

Is this file on a different subdomain then your forums?
If so, do you have vBulletin Options -> Cookies and HTTP Header Options -> Cookie Domain setup correctly?

henrysommer 03-06-2008 06:45 PM

Yep, currently signed in.

Nope, not on a subdomain.

Also, using VB version 3.6.7, perhaps that makes a difference :-)

LostPhoenix 03-10-2008 09:18 AM

I used
Code:

require_once('./global.php');
if (!$vbulletin->userinfo['userid'])
{
    print_no_permission();
}

// do what you want for logged in users

It works fine for me.


All times are GMT. The time now is 01:40 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01122 seconds
  • Memory Usage 1,721KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete