Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 47,976 through 48,000 (of 64,454 total)
  • Author
    Search Results
  • tianye
    Member

    http://www.liuso.com/bbpress this is my forum address

    I try reupload a new rss.php file again but doesn’t working

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /bbpress/

    .htaccess

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

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

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

    RewriteRule ^forum/?$ /bbpress/ [R=302,L,QSA]

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

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

    RewriteRule ^topic/?$ /bbpress/ [R=302,L,QSA]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^.*$ /bbpress/index.php [L]

    </IfModule>

    # END bbPress

    #80477
    gerikg
    Member

    bbPress is not a plugin. It’s a stand alone. You can integrate it. To avoid headaches later make a folder in your WP and put the files in there. Call it whatever you think you want the url to be.

    if you want domain.com/forums then call the folder forums when you put all the bbpress files in.

    #32059
    thesportsfag
    Member

    In a WPMU install with bbpress as a subdirectory where should the file bbpress-integration.php be placed and how should it be activated (sitewide or just for the main blog)? As it stands now I followed the instructions and placed it in wp-content/plugins folder and activated it but it can be seen and activated by all other users in their respective dashboards. That doesn’t seem right/safe.

    Thanks

    Ryan
    Participant

    After wrestling with integration between WP 2.8 and bbPress 1.0.2 for the last day and a half, I gave up and started thinking of ways I could do this a little more straightforwardly.

    My problem was I didn’t need any sort of database or user sharing between the sites. I simply wanted a way to display certain parts of my WordPress theme on my bbPress page. Things like a list of the WP categories, a menu being built from categories, a blogroll, etc.

    Here’s what I did:

    Instead of fully integrating WP, what is usually called “deep integration” so as to gain access to WordPress functions (wp_list_categories, etc.), I simply created a few functions in my WordPress theme’s function.php file that automatically generate the HTML for the items I wanted, and then saved it to a file that I could then call in my bbPress theme.

    Part 1: WordPress Theme

    Open up your functions.php file in your WordPress theme’s folder (/wp-content/themes/yourtheme/).

    Scroll down to the bottom and create your new function. For this example, I’ll use adding a list of categories from your WP blog to your bbPress forum:

    function make_cats () {
    $output = NULL;
    $output = wp_list_categories('echo=0&orderby=ID&hide_empty=0&title_li=<h3>categories</h3>');
    $fp = fopen($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/cats.html', 'w');
    fwrite($fp, $output);
    fclose($fp);
    }
    add_action('edit_category_form', 'make_cats');

    To explain this a bit, basically:

    We create a variable called $output, NULL it (make sure it’s empty), and then load the category info into it. The wp_list_categories() function creates an unordered list of the categories with a heading (h3) saying “Categories”. We also use the echo=0 bit to make sure it don’t print the HTML it is generating to the screen, but rather just puts it in $output.

    Then we open a file called cats.html in a new folder called ext that we’ve previously created (via FTP or whatever) in your theme directory (/wp-content/themes/your-theme). If the file doesn’t exists, the function will create it, however, the “ext” folder needs to already exist. The file is then fill it with $output. All these files and folders are completely up to you — you can save the file anywhere on your server, I just chose to stick it somewhere easy to remember and that wouldn’t clutter anything up.

    The final step is:

    add_action(‘edit_category_form’, ‘make_cats’);

    This tells WordPress to run this function (make_cats) every time the edit_category_form action is triggered, basically any time you load your “Categories” page in the wp-admin area. There are lots of different actions for virtually anything you can think of. Find the one suitable for your customization here.

    Part 2: bbPress Theme

    The second part is to load the contents of your newly created HTML file in your bbPress theme. To do this only requires a single line of code inserted into the appropriate place in your theme. Wherever you want the list of categories (or whatever you’re wanting to display), simply add this line:

    <?php include $_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/cats.html'; ?>

    That should do it.

    Here are a couple more function examples, both use the “save_post” action, so every time you save (new or edit) a post, it fires and updates (or creates) the HTML files:

    Tag Cloud

    function make_tags () {
    $output = NULL;
    $output = wp_tag_cloud('echo=0&smallest=8&largest=22&number=30&orderby=count&order=RAND');
    $fp = fopen($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/tags.html', 'w');
    fwrite($fp, $output);
    fclose($fp);
    }
    add_action('save_post', 'make_tags');

    Recent Blog Posts

    function make_posts () {
    $output = NULL;
    $getsomeposts = new WP_Query('numberposts=10');
    $output = '<ul>';
    while ($getsomeposts->have_posts()) : $getsomeposts->the_post();
    $output .= '<li><a href="'. get_permalink() . '" title="' . the_title('','',FALSE) . '">' . the_title('','',FALSE) . '</a></li>';
    endwhile;
    $output .= '</ul>';
    $fp = fopen($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/posts.html', 'w');
    fwrite($fp, $output);
    fclose($fp);
    }
    add_action('save_post', 'make_posts');

    Hope that helps someone who is as frustrated with the WP<–>bbP integration as I was. If you have any questions about this, feel free to post ’em here. I’ll do my best to check back.

    #80452
    johnhiler
    Member

    Check out the “bb_topic_labels();” function on your front-page.php template:

    https://trac.bbpress.org/browser/trunk/bb-templates/kakumei/front-page.php#L24

    The word “sticky” used to be hardwired into templates, but it got moved into the bb_topic_labels function in version 0.8.x. That provides the infrastructure for things like the Topic Icons plugin. More here:

    https://bbpress.org/forums/topic/what-is-bb_topic_labels

    #32055
    #80437
    OKTeaRoom
    Member

    Ok, here’s a thread:

    https://bbpress.org/forums/topic/seemless-wordpress-integration

    Is that up to date?

    I just need some direction here.

    #80436
    OKTeaRoom
    Member

    well i have javascript navigation…and being a newb, i wouldn’t know how to put that in the bbpress header. that’s why i thought this solution might be easier.

    #79943
    chrishajer
    Participant

    What version of bbPress has a file bb-admin.php in it?

    Just for reference, here is the error I am seeing right now:

    Fatal error: Call to undefined function bb_get_forums() in /home/content/m/i/c/michiganpoker/html/bb-admin.php on line 4

    #79941
    aequity
    Member

    Hi John:

    I downloaded from this website, the following page:

    https://bbpress.org/download/

    I downloaded the “Latest 1.0 zip” version….

    Please advise,

    A.

    #79940
    johnhiler
    Member

    Hold on a second, I don’t get why your bb-config.php file was trying to deeply integrate with WordPress… that line’s not part of the standard bbPress install, as far as I know:

    https://trac.bbpress.org/browser/trunk/bb-config-sample.php

    What URL did you download the zip file from?

    #32053
    yutt
    Member

    I’m running into an odd error:

    Warning: mysql_real_escape_string(): 16 is not a valid MySQL-Link resource in /forums/bb-includes/backpress/class.bpdb.php on line 394

    This happens when I using an external function I made to create threads which uses bb_insert_topic. It seems to only happen ever other thread created. If I just create one thread, it never happens, if I create three threads in a row, it will happen on the second but not the first or third.

    My function is fairly straight-forward:

    $topic_id = bb_insert_topic(array('topic_title' => $topic_title,'topic_poster' => 5,'forum_id' => 1));

    Is this a bbpress bug?

    #80433
    johnhiler
    Member

    When you say deep integration, do you mean you’d like to be able to call WordPress functions from inside of bbPress?

    Or do you mean that you’d like the themes to be very similar…

    #80438

    https://trac.bbpress.org/report

    That bug sounds oddly familiar, so it might have already been reported, but otherwise, you need to file a bug report on Trac

    #79939
    aequity
    Member

    Hi John:

    Great question. I have not WRITTEN anything in WordPress, but WordPress is one of the “canned options” for this website hosting platform (godaddy.com linux).

    I will be pleased to give you the login and pw to admin the site if that would help, you could look at the files, etc. The only thing that I’ve actually uploaded to it is the set of uncompressed bbpress files.

    Please advise. THanks alot

    A.

    #32051
    SimonDorfman
    Member

    WordPress info:

    I have wordpress Version 2.8.4 set up following these directions:

    http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

    …so the wordpress folder is located here: http://www.example.com/cms/

    …but the world sees the blog here: http://www.example.com/

    I have permalinks set up with Day and name (a.k.a.: /%year%/%monthnum%/%day%/%postname%/)

    bbPress info:

    I installed bbPress 1.0.2 here: http://www.example.com/forums/

    The problem:

    I’m having some problems with this setup which I think are being caused by mod_rewrite.

    I try to login at https://www.example.com/forums/ (using the login and password emailed to me after installation) and it seems to accept my login, but then tries to take me to this url: https://www.example.com/forums/forums/ and then shows a wordpress 404 not found page.

    Any ideas?

    Thanks very much in advance for any help!

    #32049
    OKTeaRoom
    Member

    Hi,

    I want to attempt a deep integration with my wordpress theme and I’m just wondering if there is a definitive set of instructions or thread on here that goes over what to do. I’ve seen a few, but they were started over 2 years ago.

    Are those still the best/most relevant?

    Thanks for your time. I know some people here have been on this journey with bbpress for the 2 years so they would know the answer to this question the best.

    Bob

    #32048
    mrmacmac
    Member

    I’m planning on launching a bbPress forum sometime in the months ahead, but want to add a few important features.

    1) I’d like to add ‘avatars’ beside each forum, just like vbulletin and other forum setups let you do. Is this possible?

    2) I’d like to tie-in ‘recent comments’, ‘new threads’, etc. lists in a widget on my blog. Something that updates in real time as posts are made… Just a way to funnel more folks from the blog into the forums… is this doable as well?

    Any advice is greatly appreciated!

    James

    #32047
    sadnem
    Member

    I installed bbpress 1.02 on a shared database with wordpress everything is ok except the plugins page that shows blank, What can i do to solve it. Thank you.

    Regards, Sadnem.

    #80374
    xarzu
    Participant

    I put in something for the Secret Key but it says “Error! Not equal secret keys in WordPress and bbPress”.

    Why and how do I fix this? I am on the WordPress side doing bbPress syncronization. Do I need to go to

    the bbPress side and put the same Secret Key somewhere?

    #32046
    xfatpanda
    Member

    I worked with wordpress for a while, but I’m really new to BBpress. I can’t find detail documents for BBpress like wordpress does.

    If I want to use different templates for different categories in wordpress, I can use the following script.

    <?php

    $post = $wp_query->post;

    if ( in_category(‘1) ) {

    include(TEMPLATEPATH . ‘/single-1.php’);

    }

    elseif ( in_category(‘2’) ) {

    include(TEMPLATEPATH . ‘/single-2.php’);

    }

    else {

    include(TEMPLATEPATH . ‘/single-3.php’);

    }

    ?>

    But I don’t know how to make it in BBpress, could anyone help me out? Thanks a lot!

    #32045
    tahoekid
    Member

    I am running BBpress V 1.0.2 and for some reason some members are having an issue with links going to the wrong post. I cannot replicate the error in any browser with my admin user but I can log in as one of the users that is having the issue and see it via their login. Has anyone ever seen the issue? I do have a long list of plugins that is seems any one could the the culprit but it seems really odd that only some members are having the issue.

    http://easyloungin.com/

    #80413

    I am currently attempting something similar. I have an integrated WP and bbPress but want to switch to WPMU. I’ve successfully imported the user tables through phpMyAdmin. There are three columns you need to add to the wp_users table:

    display_name - varchar(250) - blank default value
    spam - tinyint(2) - default value = 0
    deleted - tinyint(2) - default value = 0

    And in wp_usermeta table you need to do a SQL search and replace to change all values that have wp_ to wp_1_ (because the main blog in WPMU has got that table prefix)

    UPDATE wp_posts SET meta_key = replace(meta_key, 'wp_','wp_1_');

    #76595

    this is a popular demand…

    maybe take a look at some old threads, like this one:

    https://bbpress.org/forums/topic/i-want-to-show-de-wp-profile-instead-bb-profille

    #80425
    johnhiler
    Member

    Do you mean the Role of each user? If so, try this:

    https://bbpress.org/forums/topic/how-to-disable-display-of-member-group

Viewing 25 results - 47,976 through 48,000 (of 64,454 total)
Skip to toolbar