
Do you know whats wrong?
Thanks
Il try reinstall it again now. What theme are you using?ShadowFS wrote:This is strange on my board works perfect... Did you refreshed your styles? Purged cache? Try using other program to edit the files like notepad++. Something like this happened with a short time ago, but i installed this mod with AutoMod. Try unnistall and install it again.
richazey wrote:Anyone got this mod working on 3.0.7-pl-1?
As in inlcudes/functions_users.php this bit of code does not existso where has people put this:Code: Select all
// Those are group-only attributes $group_only_ary = array('group_receive_pm', 'group_legend', 'group_message_limit', 'group_max_recipients', 'group_founder_manage');
Code: Select all
// idiotnesia wuz here - user rep point $attribute_ary['group_reputation_power'] = 'int'; $group_only_ary[] = 'group_reputation_power'; // end
I tried this, but I got litle mysql error, now I restore my forumAshley.S. wrote:have we al tried to do the 3.0.6 fixes instead located at: http://www.phpbb.com/community/viewtopi ... #p10939565 ???
because I've installed this mod perfectly fine on 3.0.7-PL1 using the instructions in the install file and then doing the edits listed in the 3.0.6 fixes post where the edits in the install file are outdated.
you should still use the install.xml and then also use the 3.0.6 fix edits along with it, making sure that none of the edits are doubled up, because the 3.0.6 fixes are the replacement finds/adds for some listed in the install.xmlveebilahendus wrote:I tried this, but I got litle mysql error, now I restore my forumAshley.S. wrote:have we al tried to do the 3.0.6 fixes instead located at: http://www.phpbb.com/community/viewtopi ... #p10939565 ???
because I've installed this mod perfectly fine on 3.0.7-PL1 using the instructions in the install file and then doing the edits listed in the 3.0.6 fixes post where the edits in the install file are outdated.I try one more time step by step.
One more thing.
First i to install.xml manual and then use 3.0.6 fix manual?
And i use Serenity template.
Still bad English
I believe you can disable it in the usergroup permissions and disable the "Can give negative point" option in the permissions by setting it to no or neverThor89 wrote:Hello. This is a great mod that works like it should in about half a year now. But recently, the rep system has been used to flame other users instead of saying "thanks". Is there some way to force it to only give positive feedback?
idiotnesia wrote:[at] moonlightkisu
quick fix for 3.0.6 rc
note. Please do it manually make sure there is no duplicate line
find
after-addCode: Select all
<dl> <dt><label for="group_legend">{L_GROUP_LEGEND}:</label></dt> <dd><input name="group_legend" type="checkbox" value="1" class="radio" id="group_legend"{GROUP_LEGEND} /></dd> </dl>
[/b]Code: Select all
<dl> <dt><label for="group_reputation_power">{L_RP_GROUP_POWER}:</label></dt> <dd><input name="group_reputation_power" type="text" id="group_reputation_power" maxlength="4" size="4" value="{GROUP_REPUTATION_POWER}" /></dd></dd> </dl>
open: includes/functions_user.php
findCode: Select all
// Attributes which also affect the users table $user_attribute_ary = array('group_colour', 'group_rank', 'group_avatar', 'group_avatar_type', 'group_avatar_width', 'group_avatar_height');
add-afteropen: includes/acp/acp_groups.phpCode: Select all
// idiotnesia wuz here - user rep point $user_attribute_ary[] = 'group_reputation_power'; // end
add-beforeCode: Select all
foreach ($test_variables as $test => $type)
findCode: Select all
// idiotnesia wuz here - user rep point $test_variables['reputation_power'] = 'int'; // end
add-afterCode: Select all
'L_AVATAR_EXPLAIN' => sprintf($user->lang['AVATAR_EXPLAIN'], $config['avatar_max_width'], $config['avatar_max_height'], round($config['avatar_filesize'] / 1024)), ));
Open: styles/prosilver/template/memberlist_view.htmlCode: Select all
// idiotnesia wuz here - user rep point $template->assign_vars(array( 'GROUP_REPUTATION_POWER' => (isset($group_row['group_reputation_power'])) ? $group_row['group_reputation_power'] : 0, ) ); // end
findadd-afterCode: Select all
<dt>{L_TOTAL_POSTS}:</dt> <dd>{POSTS} <!-- IF S_DISPLAY_SEARCH -->| <strong><a href="{U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a></strong><!-- ENDIF --> <!-- IF POSTS_PCT --><br />({POSTS_PCT} / {POSTS_DAY})<!-- ENDIF --> <!-- IF POSTS_IN_QUEUE and U_MCP_QUEUE --><br />(<a href="{U_MCP_QUEUE}">{L_POSTS_IN_QUEUE}</a>)<!-- ELSEIF POSTS_IN_QUEUE --><br />({L_POSTS_IN_QUEUE})<!-- ENDIF --> </dd>
Code: Select all
<!-- IF S_REPUTATION --> <dt>{L_RP_TOTAL_POINTS}:</dt> <dd>{REPUTATION}</dd> <dt>{L_RP_POWER}:</dt> <dd>{REP_POWER}</dd> <!-- ENDIF -->