View Single Post
  #1  
Old 02-07-2008, 01:12 AM
keith1995 keith1995 is offline
 
Join Date: Sep 2007
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default usergroupid variable not working on profile.php page

What we are trying to accomplish is that our client has some members of their site that are Advisory board members that do not have the necessary credentials/information to fill out the required member filters of the profile. These members should still have to fill in the standard required fields of name, email, etc but they should not be forced to fill out any of the member filters.

We've been able to edit the global.php file to include this code:

PHP Code:
// #############################################################################
// check required profile fields
if ($vbulletin->session->vars['profileupdate'] AND THIS_SCRIPT != 'login' AND THIS_SCRIPT != 'profile')
{
 
$vbulletin->options['useforumjump'] = 0;
 
 if (
$vbulletin->userinfo['usergroupid'] == '9') {
  if (empty(
$vbulletin->userinfo['field6']) OR empty($vbulletin->userinfo['field7']) OR empty($vbulletin->userinfo['field9']) OR empty($vbulletin->userinfo['field12'])) {
  eval(
standard_error(fetch_error('updateprofilefields'$vbulletin->session->vars['sessionurl'])));
  }
 }
 
 else {
 eval(
standard_error(fetch_error('updateprofilefields'$vbulletin->session->vars['sessionurl'])));
 }

This has allowed us to create a new usergroup which we will use for those members that have the okay to bypass the member filters in the user profile however it will require them to fill in a value for First Name ('field6'), Last Name ('field7'), Firm Name ('field9') and Chapter ('field12').

The problem I have run into is centered around the profile.php page. With the various member filters being required fields, if one of these users tries to edit their profile vBulletin won't let them as it will detect required fields as not being filled out. I thought I'd be able to use code similar to the above to bypass the profile.php page's required field check which appears to be housed inside the class_dm_user.php page. I've tried to use this code:

PHP Code:
// check for empty required fields
   
if (($profilefield['required'] == OR $profilefield['required'] == 3) AND $value === false AND $verify)
   {
    if (
$vbulletin->userinfo['usergroupid'] == '9') {
    }
    
    else {
    
$this->error('required_field_x_missing_or_invalid'$profilefield['title']); }
   }
   
$this->setfields["$varname"] = true;
   
$this->userfield["$varname"] = htmlspecialchars_uni($value);
  }
  
$this->dbobject->free_result($profilefields);
  return 
$customfields;
 } 
The problem is that I can't get the profile.php?do=updateprofile action to recognize the 'usergroupid' variable. I've tried all types of different calls and have tried to print each variable to this page without any luck.

Can anyone assist me or has anyone already put together a mod that accomplishes what we are trying to do here?
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01113 seconds
  • Memory Usage 1,794KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete