Log in

View Full Version : vbulletin external page


shellcode
10-18-2013, 06:16 PM
Hi,

We have a portal and we want vbulletin 5 entegration to our portal (username, online users, last topics and sessions{username etc.}...)

What should you do?

We should use Api or anything?

Which use include code for my header page?

I used this code in my header.php;

$root = $_SERVER['DOCUMENT_ROOT'];
$curdir = getcwd ();
chdir("$root/forum/");
require("$root/forum/core/global.php");
chdir ($curdir);

and i try $vbulletin->userinfo['username'];

but:
"Access denied."

can you help me?

Thanks..

futureaudio
10-19-2013, 05:06 AM
You need to include global.php and declare $vbulletin as global to be able to access vbulletin and related information:

require_once('./global.php');
global $vbulletin;

shellcode
10-19-2013, 07:48 AM
You need to include global.php and declare $vbulletin as global to be able to access vbulletin and related information:

require_once('./global.php');
global $vbulletin;

hi futureaudio,

thank you for your answer.


I think global.php for vb4.. My question for vb5

Because show "Access denied." error when put require_once('c://wamp/forum/core/global.php'); in my header

----

I added this codes to my header file.

chdir($forumpath);
require_once('./config.php');
require_once($config['core_path'] . '/includes/config.php');
global $vbulletin;

but i cant get username etc. $vbulletin->userinfo['username'];