MyBB Community Forums

Full Version: goodbye spammer issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
not sure if this is a plugin problem or more than likely a theme or template issue but that is what you guys are for. here is the problem goodbye spammer will not give me the options to click to delete the spammer here is some pics. any help would be great if someone could log into my forums and i can give admin access to fix it.

[attachment=29726]



[attachment=29725]
I've tested it and this issue is puzzling! the string replace is not parsing and goodbye spammer link is not working (white screen)!
all the MyBB files are replaced from a fresh download and there are no changed / missing / corrupt MyBB files

(similar issue reported earlier)

MyBB version --> 1.6.10
php version --> 5.3.25
SQL --> MySQL 5.1.70

other active plugins :
  • Simple Audito Video Embeder (1.0.1)
    Ajax PM Notification (1.8.1)
    Banning Trash-Email Adresses (1.2.1)
    Custom User Permissions (0.2.2)
    Google Analytics (1.5)
    Google +1 (1.0)
    iShare (1.2.1)
    Mods Cant Edit Admins Posts (1.1)
    Naoar Donation (2.0)
    Stop Forum Spam (1.4)
    Tapatalk (3.4.2)

requesting experts' guidance
Hmmm, the profile code is a bit weird.

Try changing in member_profile_modoptions {goodbyespammer} to {$goodbyespammer}. Then change this code in inc/plugins/goodbyespammer.php:
	if(in_array($mybb->user['usergroup'], $groups) && (str_replace($mybb->settings['thousandssep'], '', $memprofile['postnum']) <= $mybb->settings['goodbyespammerpostlimit'] || $mybb->settings['goodbyespammerpostlimit'] == 0) && $memprofile['usergroup'] != $bangroup && $usergroups[$memprofile['usergroup']]['isbannedgroup'] != 1)
	{
		$lang->load("goodbyespammer");
		eval("\$goodbyespammer = \"".$templates->get('goodbyespammer_profile_link')."\";");
		$modoptions = str_replace("{goodbyespammer}", $goodbyespammer, $modoptions);
	}
	else
	{
		$modoptions = str_replace("{goodbyespammer}", "", $modoptions);
	}
to this:
	    $goodbyespammer = '';

	if(in_array($mybb->user['usergroup'], $groups) && (str_replace($mybb->settings['thousandssep'], '', $memprofile['postnum']) <= $mybb->settings['goodbyespammerpostlimit'] || $mybb->settings['goodbyespammerpostlimit'] == 0) && $memprofile['usergroup'] != $bangroup && $usergroups[$memprofile['usergroup']]['isbannedgroup'] != 1)
	{
		$lang->load("goodbyespammer");
		eval("\$goodbyespammer = \"".$templates->get('goodbyespammer_profile_link')."\";");
	}
can you do that .m.

this is what my template for member_profile_modoptions is

<br /><table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" width="100%" class="tborder">
<tr>
<td colspan="2" class="thead"><strong>{$lang->mod_options}</strong></td>
</tr>
<tr>
<td class="trow1">
<ul>
<li><a href="{$mybb->settings['bburl']}/modcp.php?action=editprofile&amp;uid={$uid}">{$lang->edit_in_mcp}</a></li>
<li><a href="{$mybb->settings['bburl']}/modcp.php?action=banuser&amp;uid={$uid}">{$lang->ban_in_mcp}</a></li>
</ul>
</td>
</tr>
<tr>
<td class="trow2">
{$memprofile['usernotes']}<br />
<a href="{$mybb->settings['bburl']}/modcp.php?action=editprofile&amp;uid={$uid}">{$lang->edit_usernotes}</a>
</td>
</tr>
{goodbyespammer}</table>
is there no one else that can fix this? we need a good team people. i love the goodbye spammer plugin but it sucks if i can't use it.
i still need help with this unless there is another plugin that will ban the users and delete post at the same time i hate to have to not use goodbye spammer.
been over a week still not solved. any help
I will reply with a solution after i study the code of the plugin.

Just give me sometime Smile



Can you upload your Good-Bye Spammer Files Here? Because, the plugins works fine for me & so far codes also look cool.
^ yes, we have tried all known possibilities.
direct link of goodbye spammer (eg.) is resulting in a white page as if the plugin is not installed
I think, your plugin code is not Evaling properly.

Please post your Plugin Files here.
Pages: 1 2 3 4