vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Requring members to input a password EACH session to view a forum (https://vborg.vbsupport.ru/showthread.php?t=259075)

Wonksta 02-24-2011 02:55 PM

Hi Lynne,

I found

PHP Code:

// check if there is a forum password and if so, ensure the user has it set
verify_forum_password($foruminfo['forumid'], $foruminfo['password']); 

From that description that code checks the forum to make sure it has password and not being a coder myself makes me a little wary of changing that as it might break the password prompt would you be kind enough to provide and example of course, when you have the time.

Thanks !

Lynne 02-24-2011 03:34 PM

I said to look at the actual function, not just the function call. The function itself is in functions.php

Wonksta 02-24-2011 09:44 PM

Oh I'm sorry I understand found it I will play with the code and see if I can find what is causing it, thanks Lynne!

--------------- Added 25 Feb 2011 at 07:43 ---------------

Sadly I have not been able to get this to work so it promts admins and mods a forum password on each session because I am dumb when it comes to php (know very little) if anyone who has an understanding of what part of this function I should edit it would be great. So far I've just been breaking it and spitting errors at me all morning :(

PHP Code:

function verify_forum_password($forumid$password$showerror true)
{
    global 
$vbulletin$stylevar;

    if (!
$password OR  ($vbulletin->userinfo['permissions']['adminpermissions'] &  $vbulletin->bf_ugp_adminpermissions['cancontrolpanel']) OR  ($vbulletin->userinfo['permissions']['adminpermissions'] &  $vbulletin->bf_ugp_adminpermissions['ismoderator']) OR  can_moderate($forumid))
    {
        return 
true;
    }

    
$foruminfo fetch_foruminfo($forumid);
    
$parents explode(','$foruminfo['parentlist']);
    foreach (
$parents AS $fid)
    { 
// get the pwd from any parent forums -- allows pwd cookies to cascade down
        
if ($temp fetch_bbarray_cookie('forumpwd'$fid) AND $temp === md5($vbulletin->userinfo['userid'] . $password))
        {
            return 
true;
        }
    }

    
// didn't match the password in any cookie
    
if ($showerror)
    {
        require_once(
DIR '/includes/functions_misc.php');

        
$security_token_html '<input type="hidden"  name="securitytoken" value="' $vbulletin->userinfo['securitytoken']  . '" />';

        
// forum password is bad - show error
        
eval(standard_error(fetch_error('forumpasswordmissing',
            
$vbulletin->session->vars['sessionhash'],
            
$vbulletin->scriptpath,
            
$forumid,
            
construct_post_vars_html() . $security_token_html,
            
$stylevar['cellpadding'],
            
$stylevar['cellspacing']
        )));
    }
    else
    {
        
// forum password is bad - return false
        
return false;
    }



Lynne 02-24-2011 09:50 PM

If you want it to prompt everyone for a password, then I believe you just want to change this line to say if no password, then true.
From:
PHP Code:

if (!$password OR  ($vbulletin->userinfo['permissions']['adminpermissions'] &  $vbulletin->bf_ugp_adminpermissions['cancontrolpanel']) OR  ($vbulletin->userinfo['permissions']['adminpermissions'] &  $vbulletin->bf_ugp_adminpermissions['ismoderator']) OR  can_moderate($forumid)) 

To:
PHP Code:

if (!$password

Test it on your test site - I think it should work.

Wonksta 02-24-2011 10:03 PM

Quote:

Originally Posted by Lynne (Post 2166511)
If you want it to prompt everyone for a password, then I believe you just want to change this line to say if no password, then true.
From:
PHP Code:

if (!$password OR  ($vbulletin->userinfo['permissions']['adminpermissions'] &  $vbulletin->bf_ugp_adminpermissions['cancontrolpanel']) OR  ($vbulletin->userinfo['permissions']['adminpermissions'] &  $vbulletin->bf_ugp_adminpermissions['ismoderator']) OR  can_moderate($forumid)) 

To:
PHP Code:

if (!$password

Test it on your test site - I think it should work.

Wow that was easy!

Thanks so much Lynne you're a great asset to vBulletin.org for always being here lending a hand to everyone (not the first time you've helped me!)


All times are GMT. The time now is 01:41 AM.

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.01255 seconds
  • Memory Usage 1,756KB
  • 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
  • (6)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete