Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,601 through 6,625 (of 7,561 total)
  • Author
    Search Results
  • #47501
    Arturo
    Participant

    have you download the 1.0 version or 0.9.0.5? for BP is required only the 1.0 version.

    #47500
    mikem1986
    Participant

    Have the proper install working and up now but my can anyone still answer my original post regarding the logo and forum header

    cheers

    #47499
    mikem1986
    Participant

    Im also not seeing the

    Enable XML-RPC and Allow Pingback options and i dont have a buddypress plugin either like in the installation notes, i downloaded the latest version from bbpress, have i clicked the wrong link?

    #47484

    Regarding installing bbPress, you will probably need to create a page in your primary blog with the slug of “forums” before WordPress will allow access to it.

    #47482
    prguy85
    Participant

    Sorry for the continuous posts. I just tried to add the bbpress into the site. I unzipped it on the server, renamed folder to /forums and when I type it in, it says site doesn’t exist…something that didn’t occur before WordPress Mu/Buddypress.

    #47475
    Kieran
    Participant

    Thanks a lot Jeff and John James!

    I went with alpha in the end because I don’t think my ftp was deleting all the files

    This step-by-step guide from Chris is perfect for anyone struggling like me.

    http://theeasybutton.com/blog/2009/04/30/integrating-buddypress-10-wpmu-and-bbpress/

    thanks guys

    #47419
    Greg
    Participant

    John, FWIW, I tried just creating a functions.php and the function wasn’t found.

    #47413
    Burt Adsit
    Participant

    Really? Well that would be useful. I took a quick look in Kakumei and didn’t see such an animal so I figured it didn’t exist.

    #47412

    Burt, I am fairly certain that bbPress allows for functions.php the exact same way that WordPress does. Including it in the header shouldn’t be necessary. Unless this changed recently and I wasn’t paying attention?

    #47411
    Burt Adsit
    Participant

    Cool. Anyway you get your function into the mix is a ‘reasonable way’ of adding it. Unfortunately bbpress doesn’t have the concept of a functions.php like wp does in it’s themes. The only other alternative you have is a plugin. The plugin makes it available no matter what theme the user has selected. That’s the big difference.

    #47410
    Greg
    Participant

    Here is a quick & dirty stab at the method Burt suggests above. I have modified “bp_core_get_avatar()” (from “bp-core-avatars.php”) for use bbPress. Like the bp function it uses an uploaded avatar or a gravatar. You need to ensure that there is a “mystery-man.gif” file in the images folder of your theme. Note that I haven’t enabled the fancy automatically generated avatars.

    It works for me. Here are the steps:

    Create the new function “_get_avatar()”. I put it in “functions.php” in my theme folder and added “<?php require_once( ‘functions.php’ ); ?>” just before the <body> tag in “header.php” to ensure that it was loaded.

    You need the following in your “post.php” to call the function:

    <?php echo _get_avatar( get_post_author_id() ); ?>

    Here is the code for “_get_avatar()”:

    function _get_avatar( $id ) {

    $avatar_file = bb_get_usermeta( get_post_author_id(), ‘bp_core_avatar_v1’ );

    $url = BB_PATH . $avatar_file;

    if ( strlen( $avatar_file ) ) {

    return ‘<img src=”‘ . attribute_escape( $url ) . ‘” alt=”” class=”avatar photo” width=”50″ height=”50″ />’;

    } else {

    $default_grav = bb_get_active_theme_uri() . ‘images/mystery-man.gif’;

    $user_email = bb_get_user_email( $id );

    $gravatar = ‘https://secure.gravatar.com/avatar/&#8217; . md5( $user_email ) . ‘?d=’ . $default_grav . ‘&s=50’;

    return ‘<img src=”‘ . attribute_escape( $gravatar ) . ‘” alt=”” class=”avatar photo” width=”50″ height=”50″ />’;

    }

    return;

    }

    One question I have for the experts… Is this a reasonable way of adding a new function? Or would it be better to create a plugin. I didn’t do the latter because I didn’t need to use any of the hooks.

    #47366
    Florian
    Participant

    I just noticed that every attempt to post something in any (non-group) forum leads to a screen filled with the following error message:

    Warning: cannot yet handle MBCS in html_entity_decode()! in /[path to bbpress]/my-plugins/buddypress-enable.php on line 53

    #47318

    RC2 is basically the public release, but it’s missing some admin panel styling. Functionally speaking though, it’s complete pending any new bugs, etc.

    @cozzie, also, try deleting any of your site cookies before you install bbPress. It’s possible that it’s seeing something left over from a previous attempt and seeing you as logged in when you’re not, or seeing you logged in as a non-admin.

    #47317
    Jeff Sayre
    Participant

    Actually RC2 works just fine

    That’s good to know. I’m working on the premise of “If it ain’t broke, don’t fix it!” I’m waiting to upgrade until the public release.

    #47308

    Actually RC2 works just fine, but Cozzie I encountered a similar problem when installing it as well, although I could not trace back for the life of me what caused it.

    Cozzie, uninstall bbPress from your server (delete the files and remove the database tables starting with “bb_” and try the install again.

    Remember to upload your bbPress files from your harddrive, and not from inside the zip file directly. I’ve had some issues doing that in the past with various FTP programs not uploading some files correctly.

    #47297
    Paul Wong-Gibbs
    Keymaster

    Could check to see if XMLRPC is working on your server. Download http://ourcommoninterest.org/downloads/xmlrpc-sayhello.zip which Burtadsit wrote.

    And to steal some words from Lance Willett:

    The test consists of two files. The first file is a bbPress plugin that you activate in the bbPress plugins area that acts as a XML-RPC server and responds to a simple “say hello” type call. The second file goes in the root of your MU setup.

    This test bypasses all the “bbpress_live/discover_pingback_server_uri()” stuff that might be giving you problems. If this works then the issue is most likely in that area and could be a host/server problem.

    To load the test, first install the “oci-bb-sayhello.php” file to your bbPress install root in a folder called “my-plugins” (create the folder if it doesn’t exist). Then log into bbPress and activate the plugin. Next, drop the “oci-bp-sayhello.php” file into the root of our MU install so that you can navigate to it easily. Then load “your-site/oci-bp-sayhello.php” in a browser and see what the output is.

    #47293
    Jeff Sayre
    Participant

    @cozzie-

    I’m using 1.0-rc-2 – sorry to be dumb but is this the same as 1.0 alpha 6?

    No. They are different. RC2 is the 2nd release candidate of version 1.0. It is a newer release. But, I believe it is still recommended to use the alpha6 release at this time.

    You can find it in the repository here: http://svn.automattic.com/bbpress/tags/1.0-alpha-6/

    #47285
    Burt Adsit
    Participant

    There sure is. Kinda.

    $forums = bp_forums_get_forum();
    if ($forums){
    foreach ($forums as $f){
    .. do something with each forum like..
    $topics = bp_forums_get_topics($f['forum_id'], 5);
    .. do something with each topic ..
    }
    }

    bp_forums_get_forum() returns bbpress forum records. Same info as in the bb_forums table.

    See:

    /bbpress/xmlrpc.php

    /buddypress/bp-forums.php

    /buddypress/bp-forums/bp-forums-bbpress-live.php

    /buddypress/bp-forums/bp-forums-templatetags.php

    The BP_Forums_Template_Forum template loop class iterates over one specific forum.

    #47283
    Kieran
    Participant

    Hi guys,

    Yeh, I’ve got this problem as well – can’t register the bbpress key-master as admin because it says i already have a user named admin (in buddypress)

    I’m using 1.0-rc-2 – sorry to be dumb but is this the same as 1.0 alpha 6? If it isn’t where can i find the alpha one? I can’t find it on the bbpress site.

    (Btw, I’m using buddypress 1.0.1 and WPMU 2.7.1).

    Thanks if anyone can let me know. This integration is proving a challenge!!!

    #47281
    Milan Kaneria
    Participant

    Oh i see, I wont be using that widget then.

    Is there a way to get all forum IDs from BBPress so as to fetch posts from forums and sub-forums using bp_has_topics() function.

    #47271
    Burt Adsit
    Participant

    Nothing like that built into bp that I’m aware of. Somebody else wanted to do this also. They tried using Sam’s bbPress Live widget. The problem is that bp uses the bbpress live widget underneath for communications with bbpress. Conflicts ensued. I don’t have any easy solutions for you.

    #47267
    Greg
    Participant

    Resolved – Andy confirmed that this bbPress forum calls wp_create_nonce() using deep integration with WPMU.

    #47249

    If you want your bpmember and bphome theme header.php and footer.php files to always be in sync, this is what I do. It’s a little tricky, but it works really well at keeping multiple theme files totally in sync.

    Copy the code below into a file called hf-sync.php and put it in your wp-content/plugins directory. Then in your WordPress Site Admin, goto your plugins area and activate the plugin called “BuddyPress Synchronized Header/Footer”

    <?php
    /*
    Plugin Name: BuddyPress Synchronized Header/Footer
    Plugin URI: http://buddypress.org
    Description: Header/Footer Synchonization Functions
    Version: 1.0
    Author: John James Jacoby
    Author URI: http://johnjamesjacoby.com
    Tags: BuddyPress, Header, Footer
    Site Wide Only: true
    */

    // Call this in your header.php file.
    // Rename the function to match your theme name.
    function theme_name_header() {
    ?>
    <!-- PUT YOUR HEADER HTML CODE IN HERE -->
    <?php
    }
    ?>

    // Call this in your footer.php file.
    // Rename the function to match your theme name.
    function theme_name_footer() {
    ?>
    <!-- PUT YOUR FOOTER HTML CODE IN HERE -->
    <?php
    }
    ?>

    Then, in whatever header.php and footer.php files that you want to use your universal header/footer code, all you’ll need to do is call the functions above.

    This lets you make edits to both of your header/footer files for both/any/all themes that use this code, in one central location.

    My guess, is that this would/should work very well in keeping bbPress themes in sync also, provided that you insert HTML code to include what bbPress needs also, and make sure not to include that code if bbPress isn’t loaded.

    #47211

    In reply to: Alignment in profile

    carpconnect
    Participant

    The themes are the default BBpress ones, the plugins i am running are

    BuddyPress

    BPContents

    Support

    Signup TOS

    Additional Privacy

    All in one SEO

    Simple Site maps

    Upgrades

    Invite

    I would not have thought these would have affected user profile layout?

    Will upgrade to new version and see how that goes.

    #47202
    Paul Wong-Gibbs
    Keymaster

    Only from BBPress at the moment.

Viewing 25 results - 6,601 through 6,625 (of 7,561 total)
Skip to toolbar