|
Once I went into my database and changed the default value of 'user_karma' in the 'users' table from 10.00 to 1.00 , and adjusted the variables in karma.php , it works pretty well. My site uses a rating from 1 to 10. I have mine set up pretty strict so that a user must have a lot of links/votes/activity on the site to gain a perfect 10.
$karma_base=1;
$min_karma=1;
$max_karma=10;
$negative_per_day = 0.1;
$history_from = time() - 3600*24*7;
$points_link_users = 10;
$points_vote_users = 1;
|