bbPress Plugin Browser »

bbPress Moderation Suite (0.1-rc2)

Download

Version: 0.1-rc2

Other Versions

Last Updated: 2010-5-15

Requires bbPress Version: 1.0 or higher

Compatible up to: trunk

Author Homepage »

Plugin Homepage »

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(12)

Your Rating

Author: Nightgunner5


  1. Hi there..i be using your suite some toime now..great tool..i just ran into an issue now..
    I wanted to ban an IP..but when i banned it it seemed that a many people got banned. My buddy got dynamic IP's..he changed them and still was banned..and i recieved a could of mails from other users that seem to got banned. Did i do something wrong? I just added the IP shown in the posts and many people got banned. Would be nice if you could send some help to learnmagiclive(at)live(dot)com
    Thanks alot

    Posted: 2 years ago #
  2. hatter

    Member

    Just found the problem with IP banning (it's in the latest release too). in the function bbmodsuite_banplus_maybe_block_ip() you have the following:

    if ( substr( $ip, 0, $cidr ) == substr( $ip, 0, $cidr ) ) {

    This will always return true, since you're comparing the same string. This needs to be changed to:

    if ( substr( $ip, 0, $cidr ) == substr( $cur_ip, 0, $cidr ) ) { // Notice the change to use $cur_ip as the second string comparrison.

    This way, the current IP is compared to the banned IP.

    Just an FYI.

    Posted: 2 years ago #
  3. Thanks for the great plugin!
    I have just one minor issue:
    When setting a user to blocked and that user tries to log in he is presented with a “you are blocked” notice, and presented with a “back to forum main page” link.

    The problem is that the back to forum main page link doesn’t take the user back to the forum main page. He/she is only presented whit the same notice again.

    To work around this the blocked user needs to clear his browser cookies. After that he is able to see the forum again.

    Can you please advice?

    Thanks in advance!

    Ben

    Posted: 2 years ago #
  4. bmft2000: and hatter: Update to the latest development version.

    Posted: 2 years ago #
  5. As far as I know I am using the latest release: 0.1-rc1
    I re-installed the plugin but without luck. The “back to forum main page” link still doesn't work.

    Any thoughts?

    Posted: 2 years ago #
  6. kieranyo

    Member

    When I activated this plugin, all was well until I activated the 3rd item down (I can't remember what option that was) on the settings page of the plugin. After that it completely bombed my forum, every page including the admin and forum returned this error:

    Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in /path/my-plugins/bbpress-moderation-suite/warning.php on line 28

    Posted: 2 years ago #
  7. jtrory

    Member

    Getting a 404 error when I click on "report"

    The requested URL /forums/my-plugins/home/jamestro/public_html/***/forums/bb-plugins/bbpress-moderation-suite/report.php?report=4&_nonce=25521cb816 does not exist

    report.php is in place so I don't know, I'm not very good when it comes to this kind of jargon :)

    Posted: 2 years ago #
  8. rainulf

    Member

    Yes, I'm getting the same error as jtrory. I think it's somewhere around line 541 of report.php:
    $href = str_replace( '\\', '/', substr( BB_PLUGIN_URL, 0, -1 ) . str_replace( realpath( BB_PLUGIN_DIR ), '', dirname( __FILE__ ) ) . '/' . basename( __FILE__ ) );
    It's returning absolute path. I'm not sure how to fix this, since I'm not very familiar with PHP. Guess we'll have to wait for the author..

    Posted: 2 years ago #
  9. rainulf and jtrory: You need to put the plugin's folder in my-plugins, not bb-plugins!

    Posted: 2 years ago #
  10. Prause

    Member

    I nstalled and activated all four parts of this plugin.
    When trying to ban a user I get a message 'User not found' which is not correst as the user EXISTS!
    Thank you for advice.
    Cheers

    Posted: 2 years ago #
  11. iramjohn

    Member

    Installed. Clicked on "activate" and my site disappeared.

    Clicking on [activate] took me to /bb-admin/plugins.php?plugin_request=all&action=activate&plugin=user%23bbpress-moderation-suite%2Fcore.php&_wpnonce=70aba91759

    Navigated to the main site, it was blank. Deleted the folder (and yes, I installed it in /my-plugins ) and the site was back. Any idea what I'm doing wrong?

    Posted: 2 years ago #
  12. leofaoro

    Member

    Hello

    This is a great plugin. I am using bbpress 1.0.2 with this plugin 0.1 RC1.

    When I go to resolve reported comments, the only method of resolution I get is "other", therefore I can't really resolve it.... any clues ?

    thanks
    Leo

    Posted: 2 years ago #
  13. Added this in. Activated everything but Move!. Report post link, and warn user links do not appear at all. They are activated. Downloaded the version from the Download link on here.

    Any solution? Perhaps uninstall and reinstall?

    Thanks.

    Posted: 1 year ago #
  14. Great Plug-in!
    I'm a Mod on a website, and these tools really help us out.

    It would really be a "bonus" for us in our configuration, to have "email user" packaged in with this plug-in. Something virtually identical to the "warn" tool, without the "warn" flag. Or perhaps an identically functioning system as "warn" with a log and user search, simply labeled "emails".

    (Does that make sense? I'm a decade behind the times anymore. heh)

    Possible?

    hey thanks for your contributions to bbPress!

    Posted: 1 year ago #

RSS feed for this topic

Add a Comment

You must log in to post.