Log in

View Full Version : Extending vBulletin's session management


Antun
07-02-2002, 08:56 PM
Anyone out there know of a way to extend vB's session management? I want to use the vB database for other parts of the site.

Is it just a matter of copying all the various include files (globals.php, functions.php, db_mysql.php etc.) to a new location, then changing the urls in those files, and finally including globals.php on the pages I want to protect?

Thanks,

Antun

Admin
07-03-2002, 06:32 AM
You can just include global.php in your PHP script.

Antun
07-03-2002, 05:57 PM
Thanks Firefly

I had to create a copy of the global file (& a bunch of others) because of relative url issues.

Take care,

Antun

Antun
07-03-2002, 07:20 PM
One more thing:

On the vBulletin pages, how do I make it so that the user has to log in for everything? e.g. to browse the forums?

On my variation one, I redirected the user to the necessary page, but I had to add that into my global.php script.

I don't want to mess around too much with the original files.

Take care,

Antun

Admin
07-04-2002, 06:48 AM
Originally posted by Antun
I had to create a copy of the global file (& a bunch of others) because of relative url issues.
You don't need to, just do this:
chdir('/home/users/path/to/your/site');
require('./global.php');

To require registration:
if ($bbuserinfo['userid'] == 0) {
show_nopermission();
}

yetdog11
08-04-2002, 02:46 PM
We have a slightly different method for doing things, including our own custom antsglobals file in each page. However, if I try requiring global.php, i get a blank page.

Sooooo my question is, what do I have to add to my antsglobals file to add the functionality that global.php brings in order to include these external pages in who's online?

Matthew Yette
matt@antsmarching.org