vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Random Usergroup on registration (https://vborg.vbsupport.ru/showthread.php?t=68566)

Merjawy 08-22-2004 07:27 PM

Quote:

Originally Posted by dstruct2k
Just only put one group, that'd do it.

thnx mate, will try that

dstruct2k 08-30-2004 07:38 AM

Quote:

Originally Posted by isla142
This doesn't appear to be working. I put it on my site and signed up as a new member, but for some reason they were placed in 'COPPA users awaiting moderation' (group 4)

I had put the four usergroups as 2 (Gryffindor), 9 (Hufflepuff), 10 (Ravenclaw) and 11 (Slytherin). Maybe you need to check your code. I did a straight copy with the numbers changed.

That would be because you're requiring email verification or COPPA registration. This hack doesn't support verification yet.

Quote:

Originally Posted by integra99
dstruct2k: what is the application of this hack on your site?

No application. Wrote it for someone else. ;)

isla142 08-30-2004 10:41 AM

Quote:

Originally Posted by dstruct2k
That would be because you're requiring email verification or COPPA registration. This hack doesn't support verification yet.

That's the thing. I don't require e-mail verification or COPPA registration on my site, which is why I needed the original hack that I asked for modified. :disappointed:

Wifey 10-31-2004 07:50 PM

I don't require e-mail, COPPA registration, image verification, nor birthday's ro register. I just changed the not requiring birthday and am hoping that this alleviates the problem I'm having, but for some reason or other a few people have been thrown into that COPPA group up on registration. Any ideas?

Here's my PHP code verbatim from my DB:

PHP Code:

// RANDOM USERGROUP HACK by dstruct2k
// Replace "999" with the usergroupid's of your randomized groups.
// Add extra groups if required.

    
$rndgroups = array(
        
'10',
        
'11',
        
'13');
    
$rndid $rndgroups[rand(0,count($rndgroups) + 1) - 1];

    
// assign user to group 3 if email needs verification
    
if ($vboptions['verifyemail'])
    {
        
$newusergroupid 3;
    }
else
    {
        if (
$vboptions['moderatenewmembers'] OR $_POST['coppauser'])
        {
            
$newusergroupid 4;
        }
        else
        {
            
$newusergroupid $rndid;
        }
    }

// END RANDOM USERGROUP HACK by dstruct2k 


Wifey 10-31-2004 11:43 PM

Okay, since I'm wickedly impatient I decided to see about figuring this out on my own. After disabling virtually everything and still having the problem, I realized that the hack was rotating improperly and therefore throwing people into COPPA - problem is, they weren't IN the COPPA usergroup. The query had somehow created a NEW usergroup with no name and no id number that can't be modified. All as a result of a simple -1

So, change:

PHP Code:

$rndid $rndgroups[rand(0,count($rndgroups) + 1) - 1]; 

to:

PHP Code:

$rndid $rndgroups[rand(0,count($rndgroups) + 1)]; 

and there should be no more problems.

I tested it no less than 5 times and was able to keep it working even with re-activating my image verification :)

bexie 11-14-2004 09:48 PM

EXACTLY what I need--is this possible for 2.3.5?

The Equivocate 12-10-2004 02:14 AM

Quote:

Originally Posted by ashkarita
Okay, since I'm wickedly impatient I decided to see about figuring this out on my own. After disabling virtually everything and still having the problem, I realized that the hack was rotating improperly and therefore throwing people into COPPA - problem is, they weren't IN the COPPA usergroup. The query had somehow created a NEW usergroup with no name and no id number that can't be modified. All as a result of a simple -1

So, change:

PHP Code:

$rndid $rndgroups[rand(0,count($rndgroups) + 1) - 1]; 

to:

PHP Code:

$rndid $rndgroups[rand(0,count($rndgroups) + 1)]; 

and there should be no more problems.

I tested it no less than 5 times and was able to keep it working even with re-activating my image verification :)

Doing that didn't solve the problem.

Andrew 12-10-2004 03:42 AM

PHP Code:

// RANDOM USERGROUP HACK by dstruct2k
// Replace "999" with the usergroupid's of your randomized groups.
// Add extra groups if required.

    
$rndgroups = array(
        
'10',
        
'11',
        
'13');

    if (
count($rndgroups) == 1)
    {
    
$newusergroupid $rndgroups[0];
    }
    else
    {
        
$rndid $rndgroups[rand(0,count($rndgroups) - 1)];

        
// assign user to group 3 if email needs verification
        
if ($vboptions['verifyemail'])
        {
            
$newusergroupid 3;
        }
        else
        {
            if (
$vboptions['moderatenewmembers'] OR $_POST['coppauser'])
            {
                
$newusergroupid 4;
            }
            else
            {
                
$newusergroupid $rndid;
            }
        }
    }

// END RANDOM USERGROUP HACK by dstruct2k 

Try that there - I've been creating new users for the last 30 minutes and it is working perfectly. I've tested with everything from 1 usergroup to 10 random ones and no errors. All I did was add an if statement that if there is only one automattically sets that as the group otherwise it randomly generates a group. I fixed the random part as well so it wouldn't throw out bad group numbers.

The Equivocate 12-10-2004 05:17 PM

Yep, your fix worked - thanks!

Andrew 12-10-2004 07:47 PM

Quote:

Originally Posted by The Equivocate
Yep, your fix worked - thanks!

No problem - Glad I could help out !


All times are GMT. The time now is 01:46 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.01159 seconds
  • Memory Usage 1,765KB
  • 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
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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