Log in

View Full Version : How to include global.php?


PSiggy
03-09-2014, 03:54 PM
Hi!

I'm making external php script and I need to get some information about user, etc. In VB4 for example, I did it like this to check if user is logged in or not:
require_once('./global.php');

global $db;
global $vbulletin;

$userid = $vbulletin->userinfo["userid"];
if ($userid == "")
die;
In VB5 however, whenever I try to include global.php (core/global.php), I end up with "Access denied". Are there some permissions I need to adjust first or ...? I'm working with WAMP.

Thanks!

AliMadkour
03-10-2014, 02:53 AM
try to use that code
<?php

// Path to core directory
chdir('core');
if (!defined('VB_ENTRY'))
{
define('VB_ENTRY', 1);
}

require_once('./global.php');

global $db;
global $vbulletin;

$userid = $vbulletin->userinfo["userid"];
if ($userid == "")
die;

PSiggy
03-10-2014, 04:02 PM
Thank you! It's working!