vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to check if user is logged in, non-vb page? (https://vborg.vbsupport.ru/showthread.php?t=93407)

sparknote_s 08-01-2005 11:42 PM

How to check if user is logged in, non-vb page?
 
I know how to program in PHP and interact with mysql so don't worry about that part. I just need to know what files to include() and what variables. Basically I want to do this:

//Check if user is logged in

//If logged in, get username in a variable

And that's pretty much it. It would also be nice if they are not logged in, display a small login box. But that is not necessary, I really need to know how to do the above.

Thanks in advance!

Adrian Schneider 08-02-2005 01:12 AM

PHP Code:

chdir('./path/to/global.php/'); //optional
include('./global.php');

if (!
$bbuserinfo['userid'])
{
    
print_no_permisson();
}

else
{
    
$username $bbuserinfo['username'];
}
chdir('./path/back/to/your/scripts'); //optional 

You can still use the $bbuserinfo array to access user info. The chdir stuff is only necessary if vbulletin isn't in the same directory.

sparknote_s 08-02-2005 04:30 AM

Whoa thanks! I had no idea it was so easy! You are SOOO COOL thanks!

Fallback 08-02-2005 03:40 PM

does this add queries when this is run by each user?

Adrian Schneider 08-02-2005 04:31 PM

Yes. I think I read 6 somewhere, but I just woke up, so who knows.

Fallback 08-02-2005 04:42 PM

I can believe it. It quadrupled our server load. If there was a way to cache this or something it would be awesome.

leenster 06-11-2006 08:45 PM

Quote:

Originally Posted by SirAdrian
PHP Code:

chdir('./path/to/global.php/'); //optional
include('./global.php');

if (!
$bbuserinfo['userid'])
{
    
print_no_permisson();
}

else
{
    
$username $bbuserinfo['username'];
}
chdir('./path/back/to/your/scripts'); //optional 

You can still use the $bbuserinfo array to access user info. The chdir stuff is only necessary if vbulletin isn't in the same directory.

when i try this i get nothing, it seems like im not logged in but i am..

<?
chdir('../forums/'); //optional
include('global.php');

if (!$bbuserinfo['userid'])
{
echo "user id =".$bbuserinfo['userid']."</br>";
echo "username = ".$bbuserinfo['username'];
}

else
{
$username = $bbuserinfo['username'];
echo "user id =".$bbuserinfo['userid']."</br>";
echo "username = ".$bbuserinfo['username'];
}

?>


result is:

user id =
username =

Adrian Schneider 06-11-2006 08:52 PM

That was for vB 3.0.x

Use $vbulletin->userinfo instead of $bbuseirnfo

egoldregion 06-15-2006 01:04 AM

Thanks.


All times are GMT. The time now is 02:12 AM.

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.01099 seconds
  • Memory Usage 1,733KB
  • 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
  • (2)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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