PDA

View Full Version : require global.php sends to forum


cosmicsea
04-25-2011, 02:05 PM
I am using vbulletin 4.1.3 and I am trying to make an external login for my main site and have it say whether you are logged in or not. I have achieved this through a sql query the first time but I want to use global.php so that I can use more data easily. Anyway I found this script which I have chopped up a bit for testing and it works fine when you are logged in and says that you are logged in but if you log out and go to the test.php page it redirects you to the main forum and the only way to stop it is to comment out global.php. Does anyone know why this is doing this?

test.php

<?php
$curdir = getcwd ();
chdir('/home/user/public_html/mydomain.com/public/forum/');
require_once('global.php');
chdir ($curdir);

require_once('login.php');
?>


login.php

<?php
$forumpath = "http://mydomain.com/forum/";

// We check if user is logged in
if ($vbulletin->userinfo['userid']!=0) {

// If Logged in display welcome back message
echo "Welcome Back, <b>";
echo $vbulletin->userinfo['username'];
echo " !</b><br />";

// If logged in display logout link
echo "<a href=\"".$forumpath."login.php?$session[sessionurl]do=logout&amp;logouthash=$logouthash";
echo $vbulletin->userinfo['logouthash'];
echo "\">";
echo "<font size=\"1\" face=\"verdana\">Log Out</font></a>
";

} else { // If user is not logged in, we do this stuff

echo you need to login;
}
?>


--------------- Added 1303744721 at 1303744721 ---------------

actually to be more clear the url will end up being http://mydomain.com/test.php but show the main forum page so its not redirecting the url to http://mydomain.com/forum/ its just shpwing the forum on the script page.

--------------- Added 1303745183 at 1303745183 ---------------

I just replaced global.php with includes/class_bootstrap.php and it seems to function correctly. Is this how I should go about doing this? by including class_bootstrap.php instead of global? I am a new vbulletin user and have seen people using global.php in past versions. Any help is appreciated.

--------------- Added 1303745568 at 1303745568 ---------------

Actually if I replace global.php with class_bootstrap.php it will not show me as logged in externally but then does the redirect thing when not logged in again so I am pretty stumped.

Lynne
04-25-2011, 04:17 PM
So test.php is in your root directory and the forums are in the /forums directory?

cosmicsea
04-26-2011, 12:59 AM
Yes that is correct.

Lynne
04-26-2011, 03:27 AM
For your custom file, you should follow this article - [HOW TO - vB4] Create your own vBulletin page (https://vborg.vbsupport.ru/showthread.php?t=228112)

cosmicsea
04-26-2011, 09:15 AM
That is an interesting article and I will work with it but it still shows me my forum home when requiring global.php. I don't know if it is just me but it happens on everything I try. If this continues then I can manually extract data from the db which I have already done successfully but I don't feel that, that is the best way to go about doing this. Thanks for the link.

--------------- Added 1303816368 at 1303816368 ---------------

After going through the link you sent me. It will not work correctly for my needs. I will just go with the manual fetching of info from my db as it is working flawlessly for me. I don't like doing it this way but it seems the best for my needs. Hopefully one day VB will release a full api to work with and let you do as you please with it "internally or externally" but until then I will do it the hard way. Again thanks for trying to help, it is much appreciated.