vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Profile Enhancements - Invitation System vB 3.7 Gold (https://vborg.vbsupport.ru/showthread.php?t=171951)

Computer_Angel 12-03-2008 11:57 PM

How could I set invitation number for group ? Seem this mod still need more developing.

crackers 12-05-2008 09:44 PM

Computer_Angel:

Quote:

UPDATE `prefix_user` SET `invitation`=x1 WHERE `usergroupid`=x2;
Where x1: here you'are setting invitations amount (number)
Where x2: here you're setting usergroupid (number)

Moreover you can change default amount of invitation which get all new registered users by editing invitation pole and changing the default amount of invitations to eg. 0.

Also you can make a cron file with mysql commands and add this file to vbulletin's planned jobs.

GSeybold 12-06-2008 06:47 PM

Easy installation.. Works great. Thank you!

TheFocusElf 12-10-2008 01:06 AM

Fabulous mod!

GSeybold 12-10-2008 05:08 AM

works great. very easy install

DieselMinded 12-10-2008 07:31 AM

Quote:

Originally Posted by crackers (Post 1677444)
DANGER!

I found big mistake in this mod but fortunately I found solution! :)

When you trying to send an invitation - script checks if email exists in database or not. When it checks, mysql load grows to 30-40% on E5200 processor! Horrible!

You have to edit an Invitation User CP plugin and replace that:

Code:

        $invitationcheck = $db->query_read("SELECT user.userid AS user_id, user.email AS user_email, invitation.email AS inv_email, invitation.acceptedby as inv_id
FROM " . TABLE_PREFIX . "user AS user
LEFT JOIN " . TABLE_PREFIX . "invitation AS invitation
ON user.userid = invitation.acceptedby OR user.userid = invitation.email
WHERE user.email = '" . $db->escape_string($vbulletin->GPC['email']) . "'
OR invitation.email = '" . $db->escape_string($vbulletin->GPC['email']) . "'
");
       
        while ($invitation = $db->fetch_array($invitationcheck))        {
        if ( $invitation['user_id'] == $invitation['inv_id'] ) {
                        $errors[] = fetch_error('invitation_user_already_invited');
        } elseif ( $invitation['user_email'] == $vbulletin->GPC['email']) {
                        $errors[] = fetch_error('invitation_email_already_registered');
                }
        }


for that:

Code:

    $invitationcheck = $db->query_read("SELECT email
    FROM " . TABLE_PREFIX . "user
    WHERE email = '" . $db->escape_string($vbulletin->GPC['email']) . "'
    ");
   
    while ($invitation = $db->fetch_array($invitationcheck))    {
    if ( $vbulletin->GPC['email'] ) {
    $errors[] = fetch_error('invitation_email_already_registered');
        }
    }


That solution incredibly reduce load and doesn't destroy proper mod funcionality.

Any one confirm this?

Sunka 12-14-2008 04:33 AM

Installed.
Thank you!

TriMe 12-14-2008 11:25 PM

I had a webmail/facebook contact grabber installed on my site. This addon was supposed to get one a looong time ago... but I got tierd of waiting.

uninstalled

DebtFree 12-16-2008 01:42 PM

I can't actually get any emails to be sent. It says it has sent it, it records it as being sent (so I can delete it later), but no email ever arrives :(

Any suggestions?

ArnyVee 12-17-2008 11:17 PM

Is there anyway that someone can resend an old invite? Or, do they have to send a new invite altogether?


All times are GMT. The time now is 07:57 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.02039 seconds
  • Memory Usage 1,740KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (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