Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 54,726 through 54,750 (of 64,431 total)
  • Author
    Search Results
  • _ck_
    Participant

    Since bbPress-Live also does a list of forums, here’s how to do that too:

    <h2>Forum List</h2>
    <ul>
    <?php
    global $wpdb;
    $query="SELECT * FROM bb_forums WHERE topics!=0 ORDER BY forum_order ASC LIMIT 10";
    $results=$wpdb->get_results($query);
    foreach ($results as $result) {
    echo "<li><a href='/forums/forum.php?id=".$result->forum_id."'>".$result->forum_name."</a></li>";
    }
    ?>
    </ul>

    of course this example doesn’t take into account nested forums and will just display them flat.

    _ck_
    Participant

    And you can just keep making it fancier and fancier.

    Let’s say you want to also show how many posts each topic has.

    echo "<li><a href='/forums/topic.php?id=".$result->topic_id."'>".$result->topic_title."</a> (".$result->topic_posts." posts)</li>";

    or how old the last reply is

    echo "<li><a href='/forums/topic.php?id=".$result->topic_id."'>".$result->topic_title."</a> (".human_time_diff(strtotime($result->topic_time." GMT"))." ago)</li>";

    _ck_
    Participant

    Let’s put that all together – this should work right inside any wordpress template:

    <h2>Latest Forum Discussions</h2>
    <ul>
    <?php
    global $wpdb;
    $query="SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 10";
    $results=$wpdb->get_results($query);
    foreach ($results as $result) {
    echo "<li><a href='/forums/topic.php?id=".$result->topic_id."'>".$result->topic_title."</a></li>";
    }
    ?>
    </ul>

    _ck_
    Participant

    So we have the $results, how do we make a pretty list of them, say inside of our sidebar?

    We have to loop through them and print them out. This is where that list of fields inside of bb_topics comes in handy.

    Here’s just a list of titles to start with:

    foreach ($results as $result) {
    echo "<li>".$result->topic_title."</li>";
    }

    Of course that’s not very useful, because they aren’t clickable. To make them clickable will take a little bit more work:

    foreach ($results as $result) {
    echo "<li><a href='/forums/topic.php?id=".$result->topic_id."'>".$result->topic_title."</a></li>";
    }

    That example uses quite a few shortcuts to get the job done, it hardcoded the path to your forums (change /forums/ if needed) and even if your bbPress uses pretty permalinks, it simply uses the topic id number to get there – bbPress will redirect back to permalinks. If you absolutely know you have permalinks and want to use them, you could have done something like this instead:

    <a href='/forums/topic/".$result->topic_slug."'>"

    _ck_
    Participant

    Now we need to put together a correct mysql query.

    Let’s try something simple.

    SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 10

    SELECT means “grab the following”

    the asterisk means “all the fields in the table”

    FROM bb_topics is kinda obvious, it’s the table we want

    topic_status=0 means it’s topics not deleted

    ORDER BY topic_time DESC means put the newest topics on top

    LIMIT 10 means we want only the first 10

    Let’s say we also wanted to exclude topics that were closed, since people can’t reply, we don’t want to tease them. In that case you would change the

    WHERE topic_status=0

    to

    WHERE topic_status=0 AND topic_open=1

    or let’s say you only wanted “stickies”

    WHERE topic_status=0 AND topic_sticky!=0

    Okay now to use that in WordPress we do the following:

    global $wpdb;
    $query="SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 10";
    $results=$wpdb->get_results($query);

    If all goes well, WordPress will then execute the query and then fill $results with the answers.

    Now comes the output part.

    _ck_
    Participant

    Both bbPress and WordPress have a very simple way of fetching data.

    WordPress uses $wpdb

    bbPress uses $bbdb

    (the db part means database, very simple)

    Then there’s the good old “get_results”. They both use that.

    bbpress:

    $results=$bbdb->get_results("mysql query goes here");

    wordpress:

    $results=$wpdb->get_results("mysql query goes here");

    Many times you can use the same query in either bbpress or wordpress by just changing $bbdb to $wpdb or visa-versa.

    Then you have to figure out what you are asking for.

    Let’s use the really simple bbPress Topics table as an example. Unless you’ve customized your install, the Topics table is probably called bb_topics

    Here are all the fields available inside of bb_topics.

    topic_id
    topic_title
    topic_slug
    topic_poster
    topic_poster_name
    topic_last_poster
    topic_last_poster_name
    topic_start_time
    topic_time
    forum_id
    topic_status
    topic_open
    topic_last_post_id
    topic_sticky
    topic_posts
    tag_count

    _ck_
    Participant

    I’m not sure if this has been addressed elsewhere already or a plugin already exists but for novices that have even just a beginner’s knowledge of how php+mysql works I want to show you how easy it is to show bbPress info inside of WordPress and vise-versa.

    You should NOT be using overly complex plugins like bbPress-Live or parsing RSS feeds if you have WordPress and bbPress sharing the same database but different tables. Instead, it’s a piece-of-cake to grab info from each other directly and display it. You don’t even need a plugin, you can code it right into your templates (as long as you know they will remain working together).

    So I’ll give some examples here and then if anyone has questions feel free to ask.

    #68136
    _ck_
    Participant

    bbPress doesn’t show actual time, but the elapsed time to prevent timezone confusion while internally tracking via gmt/utc time. If you insist on seeing accurate local time for your posts you might want to try the user timezone plugin.

    https://bbpress.org/plugins/topic/user-timezones/

    and

    https://bbpress.org/plugins/topic/accurate-post-time/

    #69319
    _ck_
    Participant

    Did you already figure this out?

    They look very well matched.

    #69103
    _ck_
    Participant

    You shouldn’t need a RewriteCond in that case, the RewriteRule can work without it if it’s simple enough.

    If you are using the .htaccess inside of the /forum/ directory though, the above examples need to be trimmed without the forum/ part.

    ie.

    RewriteRule ^forum/faq

    should actually be

    RewriteRule ^faq

    Only leave the forum/ part in there if you are using the .htaccess in the parent (webroot) folder.

    #69332
    _ck_
    Participant

    WordPress is good for a few authors <-> many commenters, with high quality authors.

    bbPress is good for many authors <-> many commenters.

    If you want *everyone* to have their own blogs then you want wpmu.

    If you want your own social network then you probably want to wait a tiny bit longer for buddypress.

    #69113
    lyrics
    Member

    You put it in the folder that you want your forum index to be, most people usually make a folder called /forums/ or /forum/ unless you want it to be as the root index of the whole website (for example if the main site itself is the forum).

    Another alternative is to make a subdomain like forums.domain.com, I prefer this way personally. Then just put the files into the root folder where the subdomain points. Hope this helps.

    #69311

    In reply to: Locked Out of Forum!

    _ck_
    Participant

    To get bbPress you work you might be able to go into bb_config.php and edit this line

    $bb_table_prefix = 'bb_';

    and make it say

    $bb_table_prefix = '';

    (that’s just two single quotes together with no space)

    Not sure if it would work and it’s bad idea to keep running like that.

    Using phpMyAdmin, you could try to rename all the tables to bb_users, bb_usermeta, etc.

    But do you see your WordPress tables? You have a bigger problem is there’s wp_users and wp_usermeta and then you don’t see topics forums posts tables.

    You may have installed bbpress into a new database instead of the old wp database?

    Copy all the names of the tables in the left hand site of phpmyadmin here so we can see better what’s wrong.

    #69310

    In reply to: Locked Out of Forum!

    chrishajer
    Participant

    It looks like you have an extra db in there. So if your database is database, your tables are actually named database.dbusers, for example?

    The default would be database.bb_users.

    To change the table prefix your bbPress installation uses, there is a value in bb-config.php called $bb_table_prefix which is normally set to “bb_”. What is the value in your file?

    To recover, you might want to rename all your tables using a prefix, then add that prefix to bb-config.php for $bb_table_prefix. I think that would work.

    I think leaving the tables with no prefixes is a bad idea, because if you install other software in the same database, you might have a conflict with similarly named tables. Not every application behaves well and allows a table prefix. oscommerce used to do that (no table prefix, just tables with normal names that would step all over any existing similarly named tables.)

    #60783

    In reply to: PHPBB3 Converstion

    sidisok
    Member

    I am also curious as to when a converter would be available. The only thing holding me back from switching to bbPress is the lack of an easy way to import a phpBB3 database into a bbPress installation.

    #4342
    cfreview
    Member

    I have an idea for a simple site, but I’m driving myself nuts deciding between bbPress and WordPress. On the front page of the site, I want to be able to add my own content, but also allow readers to post their own experiences and stories. I then want other users to be able to comment on those stories, and rate them. Simple idea, been done before.

    Is this better done with WordPress, following this example:

    http://creativebriefing.com/how-to-use-wordpress-to-build-a-website-with-user-generated-content/

    or WordPress and TDO Mini Forms

    or bbPress with a customized front page?

    thanks for any insight.

    Michael

    #69302
    chrishajer
    Participant

    Looks like you’re close already. You need to do some CSS work in style.css for your bbPress template. Just take one thing at a time. It’s probably paths to images and things like that that need to be adjusted.

    #69340
    chrishajer
    Participant

    I just thought to check the address bar to see if the proper reply number is being appended, and it is. So, the URL looks like:

    https://bbpress.org/forums/topic/column-widths-topic-posts-last-poster-freshness?replies=2#post-21105

    But there is no #post-21105 (my reply) on the page. It’s just not there yet. Odd.

    #69308

    In reply to: Locked Out of Forum!

    chrishajer
    Participant

    If you substituted db for the name of your database in your example, then it appears you have no table prefix at all for your bbPress tables, or you used db with no underscore where the first db is the database name you edited out, then db is the table prefix, but it really doesn’t look like one. If you use phpMyAdmin to look at the database, you might find that you have bbPress tables there, but with no prefix or a db prefix (not database name, but just two characters db before teh table name). So, you’ll have your wp_ tables, then you will have a bunch of tables with names like:

    dbusers

    dbuser_meta

    dbtopic

    Can you look at the database and take a screenshot of the table structure and host that somewhere then link to it here? Maybe with that info, someone will be able to figure out what you did.

    #69328

    In reply to: Looking for Theme

    chrishajer
    Participant

    The Revolution themes are pretty nice and a lot of work have gone into them. I doubt you will find anything for bbPress that you can easily edit to make it look the same.

    Brian Gardner has a bbPress theme for Revolution here:

    http://www.briangardner.com/blog/revolution-finally-meets-bbpress.htm

    Or, you can find people who are familiar with Revolution and can create a theme for you, here:

    http://www.revolutiontheme.com/support/viewforum.php?f=15

    Not exactly what you’re looking for, but the quality of those Revolution themes is so high, you’re going to have a hard time finding something for bbPress of similar quality.

    You could also start with one of the bbPress Raw themes:

    http://bbpressraw.com/bbpress_blank_themes/

    #67985
    mvds
    Member

    Just a question:

    do you include your wp functions in bbpress? I see calls to wp functions in several bb functions (also in bb_insert_topic and bb_insert_post) and I can imagine that if you dont include wp functions in bbpress, that these statements fail.

    I cannot include wp functions with the

    $bb->WP_BB = true;
    if (file_exists('../wp-blog-header.php'))
    require_once('../wp-blog-header.php');
    else
    if (file_exists('../../wp-blog-header.php'))
    require_once('../../wp-blog-header.php');

    part because then my forums don’t work. I can’t access my bb-admin pages and bbpress doesn’t recognize my users.

    #69301

    ok…

    http://holstein.it/bbpress/

    http://holstein.it/

    Now bbPress and WP are integrated…how to customize look? Is there a way to have bbPress looking like WP theme?

    epiphone
    Member

    I don’t think any bbpress installation are compatiable with WP 2.6.5 e.g the installs are:

    WP 2.5/1—- bbPress 0.9.2

    WP 2.6.3 — Unstable bbPress Alpha 1.0

    #68917

    In reply to: WPMU integration

    Klark0
    Member

    It takes care of the problem of bbpress users from MU being set as Inactive. It’ll make them a member instead.

    antoniop
    Member

    I used my keymaster. I think it logged in. When I go to http://kauaihypnosis.site90.com/bbpress/bb-login.php and use my user name and the correct password, it doesn’t let me log in. Not sure what the heck is going on. Mind you I’m using the unstable version.

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