Ben L. (@nightgunner5)

Forum Replies Created

Viewing 25 replies - 26 through 50 (of 266 total)

  • Ben L.
    Member

    @nightgunner5

    http://bbpress.org/plugins/topic/nospamuser/ :)

    bbPress doesn’t store IP addresses of users when they register. The Project Honey Pot plugin will block the spammers from every page on your forum, including the login page, so there’s no reason to worry.


    Ben L.
    Member

    @nightgunner5

    I’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.


    Ben L.
    Member

    @nightgunner5

    I’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.


    Ben L.
    Member

    @nightgunner5

    That should be fine.


    Ben L.
    Member

    @nightgunner5

    That should be fine.


    Ben L.
    Member

    @nightgunner5

    If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.


    Ben L.
    Member

    @nightgunner5

    If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.


    Ben L.
    Member

    @nightgunner5

    http://trac.bbpress.org/browser/trunk/bb-load.php#L25 – here’s an even better solution.

    error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING); allows us to avoid new error messages if PHP adds new error types in the future.


    Ben L.
    Member

    @nightgunner5

    http://trac.bbpress.org/browser/trunk/bb-load.php#L25 – here’s an even better solution.

    error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING); allows us to avoid new error messages if PHP adds new error types in the future.


    Ben L.
    Member

    @nightgunner5

    MotaBoy, yes, in Settings -> Forums.


    Ben L.
    Member

    @nightgunner5

    While I can say that this will almost definitely not appear in the bbPress standalone version of bbPM, I’m currently porting bbPM to the bbPress plugin, so I’ll try to implement this in an upcoming version.


    Ben L.
    Member

    @nightgunner5

    While I can say that this will almost definitely not appear in the bbPress standalone version of bbPM, I’m currently porting bbPM to the bbPress plugin, so I’ll try to implement this in an upcoming version.


    Ben L.
    Member

    @nightgunner5

    Mark, body[class*=single-bbp], body[class*=page-template-page-bbp] (or if you’re feeling ambitious, body[class*=bbp]) should match bbPress plugin pages. User profile pages currently use the body class for 404 pages, which is a bug.


    Ben L.
    Member

    @nightgunner5

    Find this line and make sure it says error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);


    Ben L.
    Member

    @nightgunner5

    Find this line and make sure it says error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);


    Ben L.
    Member

    @nightgunner5

    Your host might be blocking the mail() function, or your email could have been mistakenly marked as spam.


    Ben L.
    Member

    @nightgunner5

    Your host might be blocking the mail() function, or your email could have been mistakenly marked as spam.


    Ben L.
    Member

    @nightgunner5

    Theoretically, you can use anything for authentication by overriding the bb_check_login function.


    Ben L.
    Member

    @nightgunner5

    Theoretically, you can use anything for authentication by overriding the bb_check_login function.


    Ben L.
    Member

    @nightgunner5

    You could use the same method with a little tweak:

    $forum = bb_get_forum();
    if ( $forum->forum_slug == 'myforum' ) {
    bb_load_template( 'forum-myforum.php' );
    return;
    }


    Ben L.
    Member

    @nightgunner5

    You could use the same method with a little tweak:

    $forum = bb_get_forum();
    if ( $forum->forum_slug == 'myforum' ) {
    bb_load_template( 'forum-myforum.php' );
    return;
    }


    Ben L.
    Member

    @nightgunner5

    I don’t think bbPress can do this in its current version (IIRC), but what you can do is put something like this at the top of your forum template:

    if ( get_forum_id() == 7 ) {
    bb_load_template( 'forum-7.php' );
    return;
    }

    And then copy the forum template (minus the added lines) to forum-7.php and edit it as you want to.


    Ben L.
    Member

    @nightgunner5

    I don’t think bbPress can do this in its current version (IIRC), but what you can do is put something like this at the top of your forum template:

    if ( get_forum_id() == 7 ) {
    bb_load_template( 'forum-7.php' );
    return;
    }

    And then copy the forum template (minus the added lines) to forum-7.php and edit it as you want to.


    Ben L.
    Member

    @nightgunner5

    Upload them via FTP, the same way you uploaded bbPress core.

    Edit: If you meant to the plugin repository, there’s a big button in the upper right to request commit access.


    Ben L.
    Member

    @nightgunner5

    Upload them via FTP, the same way you uploaded bbPress core.

    Edit: If you meant to the plugin repository, there’s a big button in the upper right to request commit access.

Viewing 25 replies - 26 through 50 (of 266 total)