Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 41,551 through 41,575 (of 64,514 total)
  • Author
    Search Results
  • #93841
    alexiss
    Member

    @wblogan – So are you actually running the integration on one theme now?. What issues did it create for you to have two different themes?.

    #35416

    Hello everyone,

    I followed these steps to integrate WordPress with bbPress. However, there appeared some errors that I could not fix.

    1. Since I am using the theme “Twenty Ten”, I tried to use the page template One column, no sidebar, but could not. Is there any way?
    2. The sidebar does not appear in your place.
    3. The footer in both WordPress and in bbPress, was disfigured. How can I fix it?
    4. The bbPress admin pages comes to a blank page.

    Here’s the sites: the blog, and the forum.

    Thanks for everything.

    Att;

    P.S.: Sorry for my terrible English… ;-)

    #85070
    alexiss
    Member

    Is that gallery view on a forum or on a wordpress theme?. It certainly is very beautiful. A free gallery template like that would be nice to rapidly popularize your efforts. Of course i would get a free template. Excellent work.

    #94194
    chrishajer
    Participant

    What version of bbPress are you using? The bracket problem was fixed a while ago, and right now in the default theme it all appears on one line, not multiples.

    http://chrishajer.com/bbpress/single-line-move.png

    The link colors are changed but this is otherwise Kakumei default, running r2518 trunk.

    #76450
    Rich Pedley
    Member

    15th again! ;)

    Thanks for the update, and at least that gives me chance to finish off other things before I start playing with it!

    #76449

    Quick update – Aiming for October 15 for the aforementioned super-pre-alpha. Pete Mall is waiting on me to commit a few local additions that need to be fixed up before he jumps back into the fray. Glad to have him back aboard.

    #35414
    wblogan
    Member

    The admin functions on the topic.php page (where one can delete, close, stick or move a post) takes up three lines. View source:

    <div class="admin">

    [Delete Entire Topic]

    [Close topic]

    [Stick topic (to front)]

    [<form id="topic-move" method="post" action="http://domain/bbpress/topic-move.php">

    <fieldset>

    <div>

    <input type="hidden" name="topic_id" value="5" />

    <label for="forum-id">Move to</label>

    <select name="forum_id" id="forum-id"">

    <option value="4"></option>

    <option value="1"></option>

    <option value="2"></option>

    <option value="3"></option>

    <option value="5" selected="selected"></option>

    </select>

    <input type="hidden" id="_wpnonce" name="_wpnonce" value="(number)" /><input type="submit" name="Submit" value="Move" />

    </div>

    </fieldset>

    </form>]</div>

    </div>

    The first line ends with a ”.

    I’ve examined the topics.php page, found the ‘<?php bb_topic_admin(): ?>’, and found the function in bbpress/bb-includes/functions.bb-templates.php.

    if ( !$dropdown )

    return;

    $r = $before . ‘<form id=”topic-move” method=”post” action=”‘ . bb_get_uri( ‘bb-admin/topic-move.php’, null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_ADMIN ) . ‘”>’ . “n”;

    $r .= ‘<fieldset>’ . “n”;

    $r .= ‘<div>’ . “n”;

    $r .= ‘<input type=”hidden” name=”topic_id” value=”‘ . $topic->topic_id . ‘” />’ . “n”;

    $r .= ‘<label for=”forum-id”>’. __( ‘Move to’ ) . ‘</label>’ . “n”;

    $r .= $dropdown . “n”;

    $r .= bb_nonce_field( ‘move-topic_’ . $topic->topic_id, ‘_wpnonce’, true , false );

    $r .= ‘<input type=”submit” name=”Submit” value=”‘ . __( ‘Move’ ) . ‘” />’ . “n”;

    $r .= ‘</div>’ . “n”;

    $r .= ‘</fieldset>’ . “n”;

    $r .= ‘</form>’ . $after;

    I thought the problem might be the div after the fieldset, so I changed it to span, but that did not correct the problem. I can not read or understand the function.

    Is it possible to get the move option on the same line as the delete, close and stick options?

    #35413
    yetanotherlogin
    Participant

    Hello

    One forum I often read is using BBPress (doesn’t say which version) but doesn’t provide the familiar “Quote” feature to make it easier to reply to someone with their message quoted.

    Does bbPress support this natively, or are there add-on’s to do this (in which case: Which would you recommend)?

    Thank you.

    #33843
    kikko088
    Member

    I see that if I active nicer permalink avatar don’t appear. This is my .htaccess

    http://www.endurodoc.net/forum/

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>

    RewriteEngine On

    # /forum/ and bb_get_option( ‘path’ ) must match

    RewriteBase /forum/

    Options +FollowSymlinks

    # admin stuff, not processed

    RewriteRule ^bb-admin/.*$ – [L,QSA]

    RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)$ profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/([^/]+)$ profile.php?id=$1 [L,QSA]

    RewriteRule ^profile/$ profile.php [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/topics/?$ rss.php?forum=$1&topics=1 [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/?$ rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/profile/([^/]+)$ rss.php?profile=$1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/topics/?$ rss.php?tag=$1&topics=1 [L,QSA]

    RewriteRule ^rss/tags/([^/]+)$ rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/topic/([^/]+)$ rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/view/([^/]+)$ rss.php?view=$1 [L,QSA]

    RewriteRule ^rss/topics/?$ rss.php?topics=1 [L,QSA]

    RewriteRule ^rss/?$ rss.php [L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/([^/]+)$ tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ tags.php [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([^/]+)$ view.php?view=$1 [L,QSA]

    # forums

    RewriteRule ^([^/]+)/page/([0-9]+)/?$ forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^([^/]+)/$ forum.php?id=$1 [L,QSA] # tailed ‘/’ is mandatory for forum URIs! Props: Mohta

    # topics

    RewriteRule ^([^/]+)/([^/]+)/page/([0-9]+)/?$ topic.php?id=$2&page=$3 [L,QSA]

    RewriteRule ^([^/]+)/([^/]+)$ topic.php?id=$2 [L,QSA]

    # other pages

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^.*$ index.php [L]

    </IfModule>

    # END bbPress

    #54442

    In reply to: Add nofollow to links

    ant123
    Member

    If you want all links in your posts to be nofollow, you have to use post_text instead of post_author_link

    Here you go

    <?php

    /*

    Plugin Name: My own tweak for my forums

    Plugin URI: https://bbpress.org/

    Description: Fine tuning codes for my forum

    Author: Your name

    Author URI: http://www.myforum.com/

    Version: 0.1

    */

    add_filter(‘post_text’, ‘bb_rel_nofollow’);

    ?>

    I guess that’s what most people want to do

    #94103
    minervaa
    Participant

    No idea – why it stopped working. It was fine for a month or two.

    #94164
    cmunns
    Member

    Yes, maybe but the error was coming from bbPress so I figured it would be better to ask here? _ck_ if you here anything around these parts that might help me out let me know hehe :)

    #35411
    Show429
    Member

    I’ve just setup bbpress and installed a whole bunch of plug-ins, but I realize there’s no backup option and I think I need to do it manually in my server setting, which I think is annoying.

    Another thing is that I realize there’s no option in filling the birthday in the user account information. I would also like to have a restriction on some pages where only certain ages are allowed to enter/browse. And I would also want to restrict users must fill in the birthday, and without privilege to change it.

    I have tried to added the plug-in for admin to add users, but it failed to work with an error. Is there other way to do so?

    So I would like to know if there is a plug-in or something like that available that works on the latest version of bbpress. Thanks.

    #94139
    johnhiler
    Member

    @nood – Yah I use 0.9 because it has broader plugin support and it’s also much faster.

    @pagal – I believe they moved the subscribe to topic functionality into the core… you can see it in action on this forum, which is running a recent version of bbPress.

    #94170

    Follow the steps as per this – WordPress bbPress Integration

    and keep the WordPress plugin for integration activated.

    #94138
    pagal
    Participant

    bbpress only lives because of people like CK

    With no disrespect to CK, bbPress is live because people love it.

    When _ck_ was not here till x months, then what happened? bbPress was still working man.

    pluggins are put in different folders for different versions, have you checked that?

    Yes, I know.

    But I wonder, If Subscribe to Topic plugin will with 1.0.x.

    #94137
    Ricardo
    Participant

    @Pagal

    just because some dont work for you doesnt mean they’re useless, you should “measure” your words as bbpress only lives because of people like CK, im using some of her pluggins and they work even with svn versions.

    pluggins are put in different folders for different versions, have you checked that?

    #94102
    chrishajer
    Participant

    > I haven’t done anything to the forum- no edit no new plugins.

    So, what happened then?

    #35401

    a) I unzipped wordpress 3.0.1 under /wordpress/.

    b) I created the necessary mySQL db and username for wordpress.

    c) I entered the db, user, and password into wp-config.

    d) I unzipped “bbpress” into a folder inside of /wordpress/ called /bbpress/.

    e) I created the necessary mySQL db and username for bbpress.

    f) I entered the db, user, and password into bb-config.

    g) I enabled multi-site on my wordpress by adding the necessary lines of code to wp-config.

    h) I finished up configuring the network for wordpress.

    i) I randomized my cookies in wp-config.

    j) I went to /bbpress/ and started to configuring it. I specified my website and URL to be /wordpress/.

    k) I entered my cookies (including SALT – 8 total), db, user, and password into the /bbpress/ installation website.

    l) I ran the installation of /bbpress/ and got no errors – everything is good up to this point.

    However, the cookies don’t work! When I log into /wordpress/, it does NOT log me into /wordpress/bbpress/. And vice versa – when I log into /wordpress/bbpress/ it does not log me into /wordpress/ !

    Please help – and thank you for your patience.

    #35400
    cmunns
    Member

    So I have a install of WP3.0 with BuddyPress, but when I try get bbPress on there as well I get this error:

    Fatal error: Cannot redeclare bb_timer_start()

    So I figured there for some reason is a duplicate function…okay no problem so I modified the file to see if if(!function_exists… so it doesn’t redeclare and then I get a new problem

    “You must specify a table prefix in your bb-config.php file.”

    The table prefix is already defined, however so I don’t know what the deal is. Everything in the bb-config file looks good.

    Anyone have any ideas?

    ethanthekiwi
    Participant

    I tried to use the LDAP Authentication plugin for bbPress to let people login, but it gives me this error:

    Warning: ldap_bind() [function.ldap-bind]: Unable to bind to server: Invalid credentials in /var/www/wordpress/bbpress/bb-plugins/ldap-authentication.php on line 330

    #35397
    nood
    Member

    I’ve never used bbPress before and went for the latest stable release but most of the plugins I want to work don’t work.

    Should I regress or should I wait?

    It’s really only what I consider the most important ones – the bbCode buttons, the page number links on topic lists and quoting other people’s posts that I’m after

    #85818
    _ck_
    Participant

    Since the original source is no longer available

    and the theme is GPL I am mirroring it here:

    http://bbshowcase.org/themes/cf-vanilla.zip

    (Note the original poster’s link is no longer running bbpress)

    #94110
    robruifrok
    Member

    Thanks

    The trunk at https://trac.bbpress.org/browser/trunk solved the problem

    #93973
    mr_pelle
    Participant
Viewing 25 results - 41,551 through 41,575 (of 64,514 total)
Skip to toolbar