Code: Select all
<!-- IF RS_TOPLIST -->
<h3>{L_RS_TOPLIST}</h3>
<p>{L_RS_TOPLIST_EXPLAIN}: <strong>{RS_TOPLIST}</strong></p>
<!-- ENDIF -->
Here is the link of my board, but as the board can't be closed for an indefinite time as I didn't know when my question would be answered, I put the board online by restoring the previous backup ! If you want, I can upload the modified files again, just let me know .Pico88 wrote:I'm not sure if I understood you.
Post a link to your board otherwise I will not help you.
So you think I can help you without installed RS, don't you? In that situation you can upload only instal_reputation.php and lang files.DarKMaSk wrote:Here is the link of my board, but as the board can't be closed for an indefinite time as I didn't know when my question would be answered, I put the board online by restoring the previous backup ! If you want, I can upload the modified files again, just let me know .Pico88 wrote:I'm not sure if I understood you.
Post a link to your board otherwise I will not help you.
Link of the forum :- http://exben.tk/index.php
Code: Select all
Fatal error: Using $this when not in object context in /var/www/web0/html/includes/functions_reputation.php on line 580
Code: Select all
$rs_ranks = $this->obtain_rs_ranks();
Code: Select all
if (!$user->data['is_registered'])
{
return;
}
if (empty($rs_ranks))
{
$rs_ranks = $this->obtain_rs_ranks();
}
$rs_rank_title = $rs_rank_img = $rs_rank_img_src = $rs_rank_color = '';
foreach ($rs_ranks as $rank)
{
if ($points >= $rank['rank_points'])
{
$rs_rank_title = $rank['rank_title'];
$rs_rank_img = (!empty($rank['rank_image'])) ? '<img src="' . $phpbb_root_path . $config['rs_ranks_path'] . '/' . $rank['rank_image'] . '" alt="' . $rank['rank_title'] . '" title="' . $rank['rank_title'] . '" />' : '';
$rs_rank_img_src = (!empty($rank['rank_image'])) ? $phpbb_root_path . $config['rs_ranks_path'] . '/' . $rank['rank_image'] : '';
$rs_rank_color = $rank['rank_color'];
break;
}
}
}
Same issue for me. Anyone could help us?Shorty1968 wrote:can you please help me?
Check in install_mod.xml or click on the announcement link in ACP.mladiucitelj wrote:Hi!
What's new in 0.6.2?
Post a link to your board and create a testing account, because I cannot help without them.Impe wrote:Mod installed but there are no buttons, only texts :
{ RS_ADD_POINTS }
{ RS_SUBTRACT_POINTS }
When I click on it it simply move me to the top of page but nothin happen.