The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
VSa - Advanced Registration Details »» | |||||||||||||||||||||||||||||||||||||||
Info:
This product adds several advanced options to control new registrations, like: - 'Random Questions' - User must answer random question to continue with the registration (can be on/off) - 'Invitations System' - Let users invite their friends to join community - You can choose to accept only invited people to register - 'moderated users' management (accept/edit/contact/delete) - e-mail users automatically when their accounts are accepted (can be on/off) - 'non-activated users' management (accept/edit/contact/delete) - Option to delete inactive accounts automatically if not confirmed X days after registration All these features are controlled from one single page. Notes: - Don't forget to check/update product options after installation - Only Admins can access mentioned product options/logs - Inviter is automatically marked as referral when invited user registers using invitation code Installation: 1. Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product] To set options: Go to: AdminCP > vBulletin Options > VSa - Advanced Registration Versions: v1.0 - Nov 29. 2008. -Initial Version v1.7 - Feb 08. 2009. -Latest vB 3.x version v2.0 - Feb 17. 2010. -Updated for vB 4 -Done some code cleanup, minor bugs fixed v2.0.1 - Feb 19. 2010. -Fixed: Multiple invitations not sent properly -Fixed: JS error if there are whitespaces in email address list -New: Exclude groups from sending invites v2.0.2 - May 22. 2012. -Compatible with vBulletin 4.2 v2.0.3 - Apr 22. 2013. -Compatible with vBulletin 4.2.1 Download Now
Screenshots
Show Your Support
|
10 благодарности(ей) от: | ||
bluebare, DDIG, EliasAlucard, Insta-Gator, josner, K4GAP, SamSteve, yin9, Zakalway |
Comments |
#292
|
||||
|
||||
Quote:
Not sure of the fix yet edit add....... {vb:raw headinclude_bottom} above </head> Onto templates: vsa_areg_editquestion vsa_areg_invite vsa_areg_manage |
#293
|
|||
|
|||
this fix the problem thank you
|
#294
|
||||
|
||||
Just installed on 4.1.5, no errors and looks like its running ok.
thanks oh for some reason my Human Verification image isn't showing now? |
#295
|
||||
|
||||
hello sorry about my question but is the following possible, ithink this is the right place with people they can help me in this
I need at the registration 2 times the input for the date of birth for couple registrations, also shown than at the profile too . Exists a mod or is it possible to modificate this ? I would be very happy if someone can help me in this Sooo many thanks Rikko |
#296
|
||||
|
||||
Well, your hack works perfectly on my forum Valter!
Tho, i was missing something because it's a bilingual forum so, i did the French translation for it! Hope it will help some of you Just one little bug, when using the invitation system, the page layout get totally out of the original built! Any idea how to fix this one? I put the image in attachment Tks guys |
#297
|
|||
|
|||
Hello the server that I have hosted in Russia seems to have a BlackListed SMTP. Which sucks because the new owner of the server "me" is affected by this. Now I love this plugin so I can't use the email function so I wanted to edit it to just spit out the Code that was generated to the user instead. So that user who wants to invite someone can send them the code there self + also get the code.
I am using this code but it will only spit out the first code that the user sends out. I am having issues creating this array to show all the codes for that user If anyone can help guide me that would be awesome! Code:
$theuserid = $vbulletin->userinfo['userid']; $result = $vbulletin->db ->query_read("SELECT * FROM vsa_advreg_invite WHERE inviter='$theuserid'"); while($row = $vbulletin->db->fetch_array) { $getcode = "You invited: " . $row['invited']. "<br> Your Code to Give: ". $row['code'] . "<br>"; } Code:
$templater->register('getcode', $getcode); |
#298
|
|||
|
|||
Found the answer out from another user on the forums
Working Code if anyone else is interested in using in case they don't want to use email function: FYI: Some may have to change MySQL Query because its not selecting the Prefix from vBulletin if anyone has a Prefix set for table_names! Code:
$getcode = ''; $theuserid = $vbulletin->userinfo['userid']; $result = $vbulletin->db ->query_read("SELECT * FROM vsa_advreg_invite WHERE inviter='$theuserid'"); while($row = $vbulletin->db->fetch_array($result)) { $getcode .= "You invited: " . $row['invited']. "<br> Your Code to Give: ". $row['code'] . "<br>"; } |
#299
|
||||
|
||||
Is it possible that users can see where they sent invitations? Something similar like admins (usergroup 6, as it is hard coded now) now can see it, but only for everyone else, just for their invitations?
I know that now it isn't possible, but if Valter would consider this in next version? |
#300
|
||||
|
||||
As a bug, when invited user registers, he's email address is still listed as unaccepted invitation. At least that's how it is for me.
|
#301
|
|||
|
|||
Does this integrate with member referrals? ie, I send an invitation, they visit through the link that is sent to them and register...do I get credit?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|