Paid forum like mylot.com , paidforum.net , goldage.net , etc using points system so user get points from they post, and user can withdraw them points with e-gold, paypal, etc payment
You can control what character minimum from user post that will give them points, if user not reach out the minimum character on a post he/she not get points
You need vbplaza/vbbux 1.5.8 for this, let me know if some one dont have vbplaza/vbbux 1.5.8 installed on your forum, i will attacht it
OK, after vbplaza/vbbux 1.5.8 installed on your forum
open
includes ---> functions_vbplaza.php
in functions_vbplaza.php
find this
Code:
// check if it should give the user some points
if (($vbulletin->options['vbbux_perthread'] != 0) && ($foruminfo['vbbux_perthread'] != 0))
{
replace with
Code:
// check if it should give the user some points
if (($vbulletin->options['vbbux_perthread'] != 0) && ($foruminfo['vbbux_perthread'] != 0) && (strlen($post['message']) >= 500))
{
then find this
Code:
// check if it should give the user some points
if (($vbulletin->options['vbbux_perreply'] != 0) && ($foruminfo['vbbux_perreply'] != 0))
{
replace with
Code:
// check if it should give the user some points
if (($vbulletin->options['vbbux_perreply'] != 0) && ($foruminfo['vbbux_perreply'] != 0) && (strlen($post['message']) >= 500))
{
You can change
500 in code above to another minimum character
