Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 56,601 through 56,625 (of 69,016 total)
  • Author
    Search Results
  • #67967
    Boone Gorges
    Keymaster

    I’m afraid i don’t entirely understand. Are ‘posts’ like ‘blog posts’?

    Or perhaps it makes sense to think of them as a special kind of activity item? In newer versions of BuddyPress there is the ability to add metadata to activity items. Look in bp-activity.php for functions like bp_activity_get_meta and bp_activity_update_meta. An activity type called ‘posts’ could then be defined and displayed differently.

    #67965
    tamilhood
    Member

    Yes, I got my pages to show up now by moving:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    To the top of my htaccess file. I just got a problem when I try to log in with facebook connect. It redirects every page to my home page.

    Tosh
    Participant

    Hello, hellllo, helllooo.

    #67960
    sms1962
    Participant

    IMHO WPMU, BuddyPress and bbPress works well if:

    – You set a wildcard domain (in my test site subdirectory based instalation doesn’t work)

    – BbPress table is in the same database as BuddyPress, WPMU and i. ..

    – BbPress has the same prefix as WPMU. For example, if you use a standard prefix to the WordPress table (for example wp_) then for bbPress give wp_bb_

    #67951

    so far, I’ve still not been able to get wpmu activation emails to work with buddypress activated – de-activated, wpmu sends all the emails. I’m really confused about this, and a bit surprised that I’m the only one who seems to be experiencing this issue.

    #67950
    Giovanni Caputo
    Participant

    i will fix my plugin from 1 april 2010. i will make it usable on worpdpress mu + buddypress, wordpress + bp and wordpress…

    Sorry

    #67948
    enzyad
    Participant

    up :(

    #67946

    In reply to: Select languages

    nickmy
    Participant

    I installed the one and also the plugin which is here on this site but I get this error:

    Fatal error: Call to undefined function get_blog_list() in /var/www/buddy/wp-content/plugins/buddypress-multilingual/sitepress-bp.php on line 78

    ??

    #67936
    nickrita
    Participant
    nickrita
    Participant

    Boone, I tested and your code works pretty good!

    I did two things:

    1. Like I wrote above, I created a folder “activity” in my child theme and copied the index.php from the bp-default-theme activity-folder inside. Then I changed in index.php the following line:

    <option value="new_blog_post"><?php _e( 'Show Blog Posts', 'buddypress' ) ?></option>

    and have this instead of it now:

    <option value="new_blog_post" selected><?php _e( 'Show Blog Posts', 'buddypress' ) ?></option>

    Now, the Blog-Post option is shown first in the selection.

    2. In the same index.php I deleted the no-filter option:

    <option value="-1"><?php _e( 'No Filter', 'buddypress' ) ?></option>

    That’s it.

    You can see it working here: http://tastentango.de

    #67932

    In reply to: 404 on every link

    gadgetguruil
    Member

    same here http://www.pressit.co.il/

    i have tested buddypress on a new wordpress 2.9.1 and 2.9.2 installations

    i have nice Permalink and no plugin installed at all accept buddypress

    i use the new BuddyPress Default theme 1.2.1 by BuddyPress.org

    my host told me that i have

    PHP version 4.3 or greater.

    MySQL 4.1 or greater.

    The mod_rewrite Apache module enabled.

    btw

    if i use activity stream to be the home page it works but if i dont i cant get to it

    plz help

    thank you.

    Xevo
    Participant

    Wpmu has user blogs, wp single does not.

    #67916
    Paul Wong-Gibbs
    Keymaster

    Did you configure the pretty permalinks on your WP install?

    #67905
    PJ
    Participant

    Did an automatic upgrade from the wp-admin and got the following error message when I go to the plugin’s main page:

    Warning: opendir(/wp-content/plugins/buddypress-group-documents/documents/) [function.opendir]: failed to open dir: No such file or directory in /wp-content/plugins/buddypress-group-documents/index.php on line 185

    I don’t even know what that means. If any community members or Peter can shine some light on the issue, I would appreciate this. Thank you.

    #67901
    Psyber
    Participant

    I have was able to export and import my WordPress content into WordPress, getting all of my users, their info, and buddypress x-profile fields is where I am getting hung up. I keep gettin the #1062 – Duplicate entry ‘1’ for key 1 error message.

    rich! @ etiviti
    Participant

    sorry for the triple post but found the root problem.

    Fatal error: Cannot redeclare checked() (previously declared in D:xampplitehtdocsbuddypresswp-contentpluginsbuddypressbp-forumsbbpressbb-adminincludesfunctions.bb-admin.php:1261) in D:xampplitehtdocsbuddypresswp-adminincludestemplate.php on line 387

    and the fix…

    function adminfix_adminfix_bbpress_init() {
    global $bbdb, $bb_roles, $wp_roles;

    if ( is_object( $bbdb ) && is_object( $bb_roles ) ) {
    return;
    }
    if ( is_object( $bbdb ) ) {
    $bb_roles =& $wp_roles;
    bb_init_roles( $bb_roles );
    return;
    }

    do_action( 'bbpress_init');

    }

    function bp_forums_extras_setup_globals() {

    adminfix_adminfix_bbpress_init();

    do_action('bp_forums_extras_init');

    }

    if (WP_ADMIN) {
    add_action( 'admin_init', 'bp_forums_extras_setup_globals', 500 );
    } else {
    add_action( 'bp_init', 'bp_forums_extras_setup_globals', 5 );
    }

    #67895
    michaelmarian
    Participant

    I see that buddypress stores the images in the wp-content directory. I however cannot for the life of me find a reference in the database to the image. It simply stores the avatar a directory based on the member ID. Am I missing something?

    Many thanks.

    Boone Gorges
    Keymaster

    etiviti – Does your external installation of bbPress store data in the same database as your buddypress install? If not I think you will need a new $wpdb class in order to specify the right database creds.

    #67874
    Paul Wong-Gibbs
    Keymaster

    I’ve really got no idea where your <!– m –> is coming from. is this an artifact introduced by the phpBB exporter?

    Paul Wong-Gibbs
    Keymaster
    do_action( 'bbpress_init' );

    This triggers BuddyPress to load the bbPress code. So as you’ve done, you need to call this early on. If it’s giving you the WSOD, you need to find out why and fix that.

    #67869
    Andrea Rennick
    Participant

    Send me a PM, I’ve been working on this by making a BP child theme for Mystique. I’ve done the hard parts (adding stuff to nav bar) but was just going thru the HTML parts (the grunt work).

    We can merge the work. :D

    #67868
    r-a-y
    Keymaster

    Did you setup forums properly?

    Login to the WP backend, navigate to “BuddyPress > Forums setup”, what does it say?

    [EDIT]

    Looks like my moderating buddy already answered your Q ;)

    #67867
    Paul Wong-Gibbs
    Keymaster

    Hm, this is a fairly obviously question, so just to get it out of the way — have you gone into your /wp-admin/ -> “Forums Setup” under the BuddyPress menu, and selected the “Set up a new bbPress installation” button?

    #67865
    r-a-y
    Keymaster

    @Dwenaus

    I recently came across a problem similar to @etiviti (rich!)’s.

    In rate.php on line 3, you believe that bb-config.php will always reside in the root directory, but if you’re using an external bbPress integration, this won’t be the case.

    The easy way to fix this is to grab the bb config location using:

    get_site_option('bb-config-location');

    This would be for MU, not sure where the bb-config-location will be in standard WP.

    [EDIT]

    etiviti (rich!) already provided the solution!

    Declare the global $bp and use $bp->site_options[‘bb-config-location’];

    global $bp;
    require_once($bp->site_options['bb-config-location']);

Viewing 25 results - 56,601 through 56,625 (of 69,016 total)
Skip to toolbar