vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Add VB login to custom pages? (https://vborg.vbsupport.ru/showthread.php?t=73398)

thephonemall 12-28-2004 06:24 AM

Add VB login to custom pages?
 
I have some custom content and PHP scripts that I would like to make only available to my forum members. How can I VB password protect a custom page?

rake 12-29-2004 09:57 PM

insert the vbulletin backend and then use an if statement...

chdir("./forumdir");
require("./global.php");
chdir("../");

if($bbuserinfo['userid'])
{

.........
exit;
}
else
{
print_no_permission();
}

thephonemall 12-30-2004 05:51 AM

Thank you very much for the reply!
the uh.. *cough* backend? Sorry I am a little new to VB and PHP

rake 12-30-2004 01:30 PM

Including the global.php file in any other file will allow you to access all vbulletin functions, classes ($DB_site for database connection...) and all other vbulletin resources. That's what i meant.

In this case you need to check if the user visiting the page is a member or not. vBulletin checks the cookies, the sessions and determines if the user is a member and is logged in, which is reflected in the $bbuserinfo array. Therefore, you can check the $bbuserinfo['userid'] variable to see if you've got a valid viewer or not. If the id is greater than 0, it's a member. If it's 0, it's a guest.

Hope it helps. :)

thephonemall 12-30-2004 02:59 PM

Thanks again.. I will five that a try. I just realized that one of the pages I would like to VB password protect is an HTML file instead of PHP. Will that pose a problem?
-- Would you be willing to password protect and add my VB header to a couple pages for $25.00 CAD via PayPal?

rake 12-30-2004 03:03 PM

for the html file, change the extension to .php and add this:

<?php
chdir("./forumdir");
require("./global.php");
chdir("../");

if($bbuserinfo['userid'])
{
?>

plain html code here

<?php
exit;
}
else
{
print_no_permission();
}
?>

thephonemall 01-01-2005 07:03 AM

This is the code I added:

--------------------------

<? chdir("/home/thephone/public_html/forums");
require("./global.php");
chdir("../");

if($bbuserinfo['userid'])
{

exit;
}
else
{
print_no_permission();
}
?>
---------------------------
If I am logged into the forums I receive a blank page. When I am not logged in I get this error:

Warning: construct_forum_jump(./includes/functions_forumlist.php): failed to open stream: No such file or directory in /home/thephone/public_html/forums/includes/functions.php on line 2270

Fatal error: construct_forum_jump(): Failed opening required './includes/functions_forumlist.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/thephone/public_html/forums/includes/functions.php on line 2270

Any ideas?

thephonemall 01-04-2005 04:00 PM

Bump!

rake 01-04-2005 04:16 PM

you should put something before the exit; if you want something to be displayed while you are logged in.

for the second, i really have no idea. a member confirmed that the code works in another thread: https://vborg.vbsupport.ru/showthread.php?t=73731

try using just chdir("./forums"); and see what happens. (assuming your site and this script are in: /home/thephone/public_html/)


All times are GMT. The time now is 12:59 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01276 seconds
  • Memory Usage 1,725KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete