Until the next version is released, I’m closing this topic.
- Highway
-------------------------------------------
Classification: Add-on
phpBB Part: Forum
MOD Author: Highway of Life
MOD Title: Highway Referral Invitation MOD
MOD Description: This mod adds the ability for users to invite friends via email, and keeps track of how many referrals they have. -- Adds a field to registration page which allows new users to enter in the member who referred them.
Gives the ability to use strictly invitations for registration on the board.
Admin can limit the number of allotted invitations per user.
Integrates with Handyman’s Cash MOD
MOD Version: 0.1.0c
Features and planned features:
Features planned in first released version of the Referral Invitation MOD:
- Referral Features:
- Field on registration page that allows a user registering to enter the username of a current user
- Every time a referral is added for a user, their referral count increases
- The board will keep track of who referred who
- A widget can be displayed anywhere showing the top 10 users with the most successful referrals
- A widget can be displayed anywhere showing who last referred who and a link to invite YOUR friends
- Option to allow referred users to become friends upon successful referral
Invitation Features: - User can enter the emails of users they wish to invite
- The board will keep track of the status of every invitation
- Invitation Sent Status - with an option to send a reminder.
- User Joined
- User is active (made at least 1 post)
- User visited (but did not join) - with an option to send a reminder.
- User can have a limited number of invitations or unlimited
- If the user has more than one invitation remaining, they can enter more friends emails to invite.
- Invitations can expire after a set amount of time, and the invitation will be awarded back to the user.
- Administrator can set the limit for invitations and assign additional invitations to groups or users manually
- Administrator can revoke the permission for a user to use the invitation system -- useful if a user abuses it.
- Ability to disable board registration, in which case an invitation key would be required to register. -- for private boards
- Administrator can set the format of the invitation e-mail, or use a default template provided in multiple languages.
- Memberlist in ACP will show how users with the most invitations left, and the users who have depleted their invitation count. This is useful if an Admin needs to assign users more invitations to pass out.
- Users can donate invitations to other users
- If a user is inside of a group, and they have permission to invite others to that group, the user invited will be automatically added to the group upon successful invitation. -- useful to provide group or forum specific invitations.
- Option to set number of additional invitations awarded to users based on number of successful invitations
- Option to set number of additional invitations awarded to users based on post count
- Administration options will be included for all of these features, so you can set the invitation to be extremely simple, or utilize ALL of the features at your option.
- phpBB 3.0 RC7
Language: English
Licence: GNU General Public License v2
History:
- Version 0.1.0 First Beta release of the new Referral Invitation MOD.
- Version 0.1.0 Added prosilver theme files and edits, added invitations table constant.
Installation Level: Easy
Installation Time: 10 Minutes
Format: STG-MODX
Download: highway_referral_invitation_mod.zip
STG Development Topic
phpBB.com Development Topic
phpBBModders Development Topic
FAQ:
Q: I am getting the following error:
Code: Select all
SQL ERROR [ mysql4 ]
Column 'user_id' cannot be null [1048]
The fix is simple...
OPEN: referral.php
FIND:
Code: Select all
$row = $rowset[0];
Code: Select all
if (!$rowset)
{
// there was no result for this user... return;
return;
}