Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,726 through 40,750 (of 64,522 total)
  • Author
    Search Results
  • #97324
    mr_pelle
    Participant

    You can try this plugin by _ck_

    #102424
    mr_pelle
    Participant

    You can try this plugin by _ck_

    #97333

    In reply to: bbpress spam

    mr_pelle
    Participant

    Yes, this is a common problem and as far as I know there is no easy solution to it.

    I suppose you can write a simple plugin/script to remove all tags inserted by a certain user from your database…

    #102433

    In reply to: bbpress spam

    mr_pelle
    Participant

    Yes, this is a common problem and as far as I know there is no easy solution to it.

    I suppose you can write a simple plugin/script to remove all tags inserted by a certain user from your database…

    #36069
    spewf
    Member

    I have a script that I made that pulls the count of posts a user does on bbpress and displays it on wordpress page template. For some reason I can’t get it to work. I know I need to add something to wordpress but I am not sure what. Here is the script so far.

    function get_user_posts_forums1($user_id) {

    global $wpdb; // I know I need to change this

    $count = $bbdb->get_results(“

    SELECT COUNT( * ) AS total

    FROM {$bbdb->posts}

    WHERE poster_id = {$user_id};”, object);

    return $count[0]->total;

    }

    Any ideas?

    #97229
    Ramiuz
    Participant

    I´ve done some searching myself, and hopefully you guys can help me pick the best solution of these listed plugins:

    bb-NoSpamUser

    -https://bbpress.org/plugins/topic/nospamuser/

    Sounds good if these spammers IPs are included in the database

    Project Honeypot

    -https://bbpress.org/plugins/topic/php4bb/

    Same goes for this one. Which is more reliable for BBpress 1.02?

    reCAPTCHA

    -https://bbpress.org/plugins/topic/recaptcha-bbpress/#post-3955

    Ugly, but may work better than Human Test, any opinions?

    Clickcha

    -https://bbpress.org/plugins/topic/clickcha/

    Same goes for this one

    Blocklist

    -https://bbpress.org/plugins/topic/blocklist/

    Perhaps more labour intensive than necessary?

    #102329
    Ramiuz
    Participant

    I´ve done some searching myself, and hopefully you guys can help me pick the best solution of these listed plugins:

    bb-NoSpamUser

    -https://bbpress.org/plugins/topic/nospamuser/

    Sounds good if these spammers IPs are included in the database

    Project Honeypot

    -https://bbpress.org/plugins/topic/php4bb/

    Same goes for this one. Which is more reliable for BBpress 1.02?

    reCAPTCHA

    -https://bbpress.org/plugins/topic/recaptcha-bbpress/#post-3955

    Ugly, but may work better than Human Test, any opinions?

    Clickcha

    -https://bbpress.org/plugins/topic/clickcha/

    Same goes for this one

    Blocklist

    -https://bbpress.org/plugins/topic/blocklist/

    Perhaps more labour intensive than necessary?

    #97351

    In reply to: Install Issues

    pthomson
    Member

    I thought I may as well try installing bbpress from my wordpress install. I renamed the config file, dropped the database and then removed the C:xampphtdocsmysitewp-contentplugins bbpress install file. I then searched for bbpress in the plugins section and installed the bbpress plugin. However, when I went to activate, I got the error: “The plugin does not have a valid header.”

    #102451

    In reply to: Install Issues

    pthomson
    Member

    I thought I may as well try installing bbpress from my wordpress install. I renamed the config file, dropped the database and then removed the C:xampphtdocsmysitewp-contentplugins bbpress install file. I then searched for bbpress in the plugins section and installed the bbpress plugin. However, when I went to activate, I got the error: “The plugin does not have a valid header.”

    #36068

    Topic: Install Issues

    in forum Installation
    pthomson
    Member

    Hi all, just installed locally on a XAMPP install. using Latest version of Google Chrome. I only recieved one error when installing: “Key master email not sent!”. I assume this is because my local site has not been set up for email? When I navigate to my forum http://localhost/mysite/forums, I am able to browse my first topic, however when I login, I get a blank page with two warnings and 4 deprecated messages:

    Warning: Cannot modify header information – headers already sent by (output started at C:xampphtdocsmysiteforumsbb-settings.php:186) in C:xampphtdocsmysiteforumsbb-adminincludesclass.bb-install.php on line 390

    Warning: Cannot modify header information – headers already sent by (output started at C:xampphtdocsmysiteforumsbb-settings.php:186) in C:xampphtdocsmysiteforumsbb-includesfunctions.bb-core.php on line 1101

    I assume that this is a PHP config issue, any ideas?

    BTW: I followed this guide: http://bbpress.org/forums/topic/idiots-guide-to-installing

    #97343
    Submachiner
    Member

    sorry, realised that post counts is actually a plugin and not an installed feature in the bbpress coding. ill just contact a plugin creator about it.

    delete this thread please.

    #102443
    Submachiner
    Member

    sorry, realised that post counts is actually a plugin and not an installed feature in the bbpress coding. ill just contact a plugin creator about it.

    delete this thread please.

    #97051

    In reply to: RSS doesn't work

    Abalone
    Member

    I have the same problem. Fresh bbpress installation – a click on the rss-link in a thread only shows the headline but no posts. Any solution existing?

    Thanks in advance

    Abalone

    #102151

    In reply to: RSS doesn't work

    Abalone
    Member

    I have the same problem. Fresh bbpress installation – a click on the rss-link in a thread only shows the headline but no posts. Any solution existing?

    Thanks in advance

    Abalone

    #36065

    Topic: bbpress spam

    in forum Installation
    g01010
    Member

    I just started a new forum with bbpress 1.0.2. Akismet is catching spam and deleting the posts but the tags left by the spammers don’t get deleted.

    So I had a couple of questions: first, is this a common problem and second, is there a way round it?

    I’ve just installed the Human Test plug-in which will hopefully keep the bots off the forum but still won’t keep any human spammers away.

    Thanks for any assistance.

    #94567
    Rich Pedley
    Member

    http://wordpress.elfden.co.uk/forum/

    Although the reply box appears for guests, guests can’t post. So I’ve enabled registration.

    please be aware that I may remove all users at any time.

    #97075
    #102175
    #36061
    sepp88
    Member

    hey guys,

    is it possible to just display the #main div on my bbpress website if users looged in? i don’t want to simply hide it with css, because i’m able to do that.

    however i thought of something like starting in the header with:

    <?php if ( bb_is_user_logged_in() ) : ?>

    <div id=”main”>

    ….

    and ending in the footer

    </div> <!– #main –>

    <?php endif; ?>

    however, i’m always getting an error. any idea how i can solve that problem?

    i just want to display the login form and the register-link if users are logged out, nothing else, not even stuff in the footer – no header image, nothing at all.

    thank you for your help!

    #94566
    Rich Pedley
    Member

    I do have a test version online, I’ll update it to the latest version sometime over the weekend.

    #94565
    Erlend
    Participant

    It would be great if JJJ and team could start a test site where the latest plug-in version was installed. It would make it easier for this group to pound on it and help bug test the code.

    Absolutely! I’m quite uneasy around all of these development versions, but I would really like to lend a hand by testing whatever I can.

    #94564

    In a way, this is not the kind of forum, people are used too. But I give it a try

    #94562
    Rich Pedley
    Member

    It’s not really at that stage yet. personally I prefer to test locally.

    #94561
    gswaim
    Participant

    Anyone has a demo of the plugin running in a website…

    It would be great if JJJ and team could start a test site where the latest plug-in version was installed. It would make it easier for this group to pound on it and help bug test the code.

    Thanks!

    #94560

    It’s unfinished code basically. I started making it a template file and then decided to make it a template part to make it work right away and never cleaned up the mess.

Viewing 25 results - 40,726 through 40,750 (of 64,522 total)
Skip to toolbar