vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   conditional for usertools.php (https://vborg.vbsupport.ru/showthread.php?t=220902)

Senti.Jatt 08-14-2009 06:37 PM

conditional for usertools.php
 
PROBLEM solved thanks to lynne and Redlinemotorsports

Lynne 08-14-2009 06:39 PM

I think you want to use $bbuserinfo as that is related to the person trying to view the page.

Senti.Jatt 08-14-2009 07:08 PM

^ not person trying to view the page to but something like

PHP Code:

if (!$userinfo OR if (is_member_of($userinfo6)) 

I want no result found for usergroup 6
even if usergroup 6 searches it

Lynne 08-14-2009 07:18 PM

Who is the condition supposed to work on? And where are you adding this code (line number and perhaps a couple of lines of code above and below it, please).

Senti.Jatt 08-14-2009 07:21 PM

PHP Code:

if ($vbulletin->GPC['username'])
    {
        
$getuserid $db->query_first("
            SELECT userid
            FROM " 
TABLE_PREFIX "user
            WHERE username = '" 
$db->escape_string(htmlspecialchars_uni($vbulletin->GPC['username'])) . "'
        "
);
        
$userid intval($getuserid['userid']);

        
$userinfo fetch_userinfo($userid);
        if (!
$userinfo OR is_member_of($userinfo6)); 
        {
            
print_stop_message('protected_user');
        }
    }
    else if (
$vbulletin->GPC['userid'])
    {
        
$userid $vbulletin->GPC['userid'];
        
$userinfo fetch_userinfo($userid);
        if (!
$userinfo OR is_member_of($userinfo6));  
        {
            
print_stop_message('protected_user');
        }
        
$vbulletin->GPC['username'] = unhtmlspecialchars($userinfo['username']);
    } 

When someone searches for x user's ip address(x user is in usergroup 6)
it should come up with something like No results found
i know how to add error message but can't make conditional to work

Lynne 08-14-2009 09:39 PM

Why are you putting a ; at the end of the if condition? It won't continue.

Should be:
PHP Code:

if (!$userinfo OR is_member_of($userinfo6)) 


Senti.Jatt 08-14-2009 09:50 PM

^ dude you are the best

HMBeaty 08-14-2009 09:56 PM

Try this...
PHP Code:

if (!is_member_of($vbulletin->userinfo6))
{
    
print_stop_message('protected_user');



Senti.Jatt 08-14-2009 10:22 PM

^ thanks but lynne one has worked fine
yours will only disable ip's for usergroup 6 but i wont show an error when we mistype a username

Thanks very much guys


All times are GMT. The time now is 11:17 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.00994 seconds
  • Memory Usage 1,735KB
  • 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
  • (4)bbcode_php_printable
  • (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