Quote:
Originally Posted by Billspaintball
1st, in the file login_inc.php ensure that you have changed the 4 paths so that "www.yoursite.com" refers to your domain.
Then on the page you want to include the login use this code:
Code:
<?php
chdir('/home/racett56/public_html/forums');
require_once('/home/racett56/public_html/forums/global.php');
require_once('/home/racett56/public_html/login_inc.php');
?>
Note: This assumes on the 4th line that you have placed the file login_inc.php in your websites root directory (that is where you would have index.html or index.php)
|
The file with the access control code in it is located in '/home/racett56/public_html/rtdb'. I simply added the three lines to the begining of an existing non-forum related .php file.
The login_inc.php is located in '/home/racett56/public_html'.
The forums are located in '/home/racett56/public_html/forums'.
I changed everything to what you suggested and I still get the same thing as before. The login prompts appear at the top of the screen when accessing the .php file. If I fill in the prompts and hit 'Log in', the vBulletin welcome screen appears for a second or two. Then it takes me back to the exact same screen with the login prompts at the top. It seems like this
$vbulletin->userinfo['userid']!=0 is false even after I login.
BTW... thanks for the fast response!