vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   $vbulletin->userinfo['userid'] working outside the forum, empty inside? (https://vborg.vbsupport.ru/showthread.php?t=103512)

kopfnick 12-22-2005 11:08 AM

$vbulletin->userinfo['userid'] working outside the forum, empty inside?
 
Hi,

I already posted this at vbulletin.com but still can?t get any solution. So please bear with me, it?s driving me nuts! Lost 2 days already...

just recently converted our 170.000 posts phpBB to vBulletin and absolutely love it so far (conversion with impex went really smooth and the template and plugin system are priceless!). I just have one small problem:

I cannot seem to use "$vbulletin->userinfo['userid']" in an include inside the forum. It is always empty.

Explanation (simple version ):

I include a file (blah.php) throughout the site, in this file i have

PHP Code:

<?
echo $vbulletin->userinfo['userid'];
?>

Outside the forum, i additionally have included the global.php:

PHP Code:

chdir($_SERVER['DOCUMENT_ROOT'].'/forum/');
require(
'./global.php');
chdir($_SERVER['DOCUMENT_ROOT']); 

Inside the forum, i included the file with a plugin:

Hook: global_start

Code:

ob_start();

include('path/to/blah.php);
$blah= ob_get_contents();
ob_clean();

include other stuff;
ob_end_clean();

and then output it in the first line of the header (templates system):

Code:

$blah
Everywhere on our site, i get an output of my userid, just inside the forum the variable is empty and outputs nothing.

How can i get it to echo my userid?

(Longer explanation: I use a small login-thingie in the menu, which i can?t get to work in the forum. i am logged in in the normal login box, but not in the menu )

thanks in advance,
kopfnick

PS.:Site can be found at www.hiphop.at/start, you can see the login box in the menu.

merk 12-22-2005 08:16 PM

Where are you hooking into? Sometimes $vbulletin isnt available as $vbulletin (inside classes), youll need to use $this->registry if this is the case.


All times are GMT. The time now is 02:52 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.01890 seconds
  • Memory Usage 1,717KB
  • 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_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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