Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 52,726 through 52,750 (of 64,398 total)
  • Author
    Search Results
  • #72414
    #4990
    _ck_
    Participant

    If you use my bb-reputation plugin, please update to 0.0.6 ASAP.

    http://bbpress.org/plugins/topic/bb-reputation

    (remember to copy over your settings at the top if you have customized them)

    #72404

    Txanny, it’s hard to say as you’re talking about 6 months down the line, but if it was me i’d leave BBpress until the end of your development cycle. We’ve no idea what the 1.0 alpha is going to look like in 6 months, as the next release is going to break 2/3 of all plugins and none are being updated for some time, and _ck_ herself has stated she’s not fixing any of hers until 1.1 .

    Given that 1.0alpha came out in September 16th last year and isn’t anywhere close to being out of alpha just now (some 6 months later), I’d suggest not making a decision on which BBpress version for quite some time yet, at least until 1.0alpha7 and we can see what the plugin fall out is.

    If it was me though, i’d go with 0.9. it works well, the plugins work, development on it can continue, and it’s stable.

    #72384
    chrishajer
    Participant

    In another thread you posted this:

    > I’m using bbpress 0.9.0.4 and wordpress 2.7.1.

    Those two versions will not integrate user logins (cookies) unless you use one of these two solutions:

    https://bbpress.org/plugins/topic/freshly-baked-cookies/

    https://bbpress.org/forums/topic/bayanimecom-wp26-and-bbpress-09-complete-cookie-integration

    #72397

    In reply to: link back to blog

    chrishajer
    Participant

    There’s something wrong with your header.php if there is just a “>”.

    It should look like this:

    http://svn.automattic.com/bbpress/tags/0.9.0.4/bb-templates/kakumei/header.php

    #72411

    In reply to: Plugin @ ForumMatrix

    _ck_
    Participant

    I’ve actually become the maintainer for that recently.

    The problem is their options are VERY limited with no room for details.

    WYSIWYG would be wrong, I’ll go look at that, but bbPress has partial or most of the others.

    #4989

    Not a great title but it’s after 3am here.

    I remembered in October last year _ck_ posted a link to ForumMatrix and it’s information on BBpress:

    http://www.forummatrix.org/show/bbPress

    Now, if it’s not someone involved with the project that keeps ForumMatrix up to date, then i’m very sorry for asking but right now i find it a good source of “where we’re at”, but ee seem to have PLUGIN listed in every box. The thing is, i dont think we have plugins for some of this stuff.

    For example, where is the WYSIWYG plugin?

    According to forum matrix BBpress has plugins for Full BBcode, WYSIWYG editor, nested quotes, syntax highlighting, multiple file attatchments, acl, blacklist, warnings, suspensions, ip-block, audit logging, user reports, rating/karma system, custom profile fields, split threads, calendar, pruning , archiving, export private messages, lo-fi view.

    Thing is, i dont see any working plugins that do those jobs. Now, i’m more than happy to admit that i may be wrong (be great if i was), but i do find the whole current plugin page a bit of a mess (given that the latest plugins, latest talked about plugins, and the highest rated plugins are generally quite similar).

    Any help in finding working plugins that BBpress is supposed to have would be really helpful :)

    Thank you all

    #4813
    Chad Holden
    Member

    when posting a topic within any forum, after I click submit, it goes directly to a This topic has been closed page. Nothing else shows, no errors. Just the standard green bbpress error page.

    Anyone else experience this? ANy fixes?

    ganzua
    Member

    Ok, thanks for your help :) I’m going to try more of these queries. I find them very useful to integrate small details.

    #72097
    _ck_
    Participant

    To be clear, both bbPress and WordPress for that matter still work fine under PHP 4.4.x and technically 4.4.x is still supported officially.

    It’s just the specific i18n problem they are encountering, where the fix in 1.0 hasn’t been backported to 0.9

    Sam is unlikely to make any further changes to 0.9 unless it’s a security fix or serious performance problem.

    I haven’t looked at the fix for 1.0 but I suspect someone could make a patch to make 0.9 do the same thing if they really wanted.

    _ck_
    Participant

    Because for some reason the bbdb object must not be created when deeply integrated under 1.0

    Must have something to do with backpress which re-uses wp functions.

    ganzua
    Member

    That is with bbPress 1.0 right? the object_type is for 1.0

    Yes, it is bb 1.06a with wp 2.7 :)

    I tried with get_var and I get the same error for get_var;

    Fatal error: Call to a member function get_var() on a non-object in….

    but then I changed $bbdb for $wpdb and it works. Why? I don’t understand this.

    #72396
    johnhiler
    Member

    Yup! _ck_ did a great job with this plugin:

    https://bbpress.org/plugins/topic/instant-password/

    I’ve been using it for a while, and it’s really great…

    #4986
    dphs
    Member

    Hi,

    There is an answer to this question posted a year ago, but when I open the header.php file from my bb-templates/kakumei folder all that is there is “>”. I tried adding the code there, but it deleted the header. Is it located in another place?

    I’m using bbpress 0.9.0.4 and wordpress 2.7.1.

    Thanks!

    _ck_
    Participant

    That is with bbPress 1.0 right? the object_type is for 1.0

    You get nothing using get_results because it returns an array – use get_var instead

    <?php
    global $bbdb;
    $result=$bbdb->get_var("SELECT SUM(meta_value) FROM bb_meta WHERE object_type='bb_topic' AND meta_key='views'");
    echo $result;
    ?>

    ganzua
    Member

    I need more info than “didn’t work”

    Fatal error: Call to a member function get_results() on a non-object in wordpress/wp-content/themes/mytheme/header.php on line 149 (line where I placed the code)

    Try replacing $bbdb with $wpdb

    no error but what I want is to query bbpress data base. Whenever I echo $results there is no answer.

    #64254

    In reply to: Norwegian translation

    Bloggsbe
    Member

    Norwegian translation of 0.9.0.4 -> here

    Norsk oversettelse av 0.9.0.4 -> her

    Rune

    Norsk WordPress og bbPress forum

    _ck_
    Participant

    I need more info than “didn’t work”

    Try replacing $bbdb with $wpdb

    ganzua
    Member

    and remember to use $wpdb on WordPress pages, vs $bbdb on bbPress pages

    I want to query $bbdb from a wp page. In particular, I want to fetch the total amount of views from your bb Topic Views plugin. This code didn’t work;

    <?php
    global $bbdb;
    $results=$bbdb->get_results("SELECT SUM(meta_value) FROM bb_meta WHERE object_type='bb_topic' AND meta_key='views'");
    $results=$bbdb->get_results($query);
    ?>

    WordPress is installed in /wordpress/ and bbpress in /wordpress/bbpress/ both deep integrated. What’s missing?

    #64931
    trouwen
    Member

    I’m going to try this today! I hope it works, because I love WordPress and BBpress..

    #66144
    andyimages
    Member

    Thanks Ann, so far so good…..no problems on that end.

    #4983

    Topic: Plugin tutorials

    in forum Plugins
    scottybowl
    Member

    Does anybody know of some good BBPress tutorials for creating plugins?

    #72388
    chrishajer
    Participant

    What version bbPress are you using? Is it integrated with WordPress, and if so, what version? Are you using a language file other than English?

    maharzan
    Member

    Okay, have been searching google and this forum for long time and find there is no occurrences of it.. not even mention of it. So, wanted to ask everyone out here if they know what is happening..

    I am using double quotes in the code and trying to paste the code within backticks and while everything looks okay few html characters are rendering their ASCII code or something (html escape characters ??)

    For example,

    double quotes ( ” ) are rendered as &q uot;

    ampersands ( & ) are rendered as &a mp;

    ignore the spaces. I have disabled all the plugins, switched themes and looked over everything, but I still can’t figure out what is causing this. I saw several forums including bbpressshowcase which suffers from same problem. I don’t see that problem here in this forum.

    Can anyone shed some light for me?

    Thanks for all your help.

    #68360
    bedbugger
    Participant

    Oh… it’s the Mass Edit plugin: https://bbpress.org/plugins/topic/mass-edit/

    As usual, _CK_ has got it covered!

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