Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 61,001 through 61,025 (of 69,047 total)
  • Author
    Search Results
  • #56327
    arghagain
    Participant

    After looking through global db, I saw the buddypress did not installed any bbpress table at all. After looking into defaults.bb-schema.php, I recreated the bbpress tables as follow:

    CREATE TABLE mydb_global.wp_bb_forums (

    forum_id int(10) NOT NULL auto_increment,

    forum_name varchar(150) NOT NULL default ”,

    forum_slug varchar(255) NOT NULL default ”,

    forum_desc text NOT NULL,

    forum_parent int(10) NOT NULL default 0,

    forum_order int(10) NOT NULL default 0,

    topics bigint(20) NOT NULL default 0,

    posts bigint(20) NOT NULL default 0,

    PRIMARY KEY (forum_id),

    KEY forum_slug (forum_slug)

    );

    CREATE TABLE mydb_global.wp_bb_meta (

    meta_id bigint(20) NOT NULL auto_increment,

    object_type varchar(16) NOT NULL default ‘bb_option’,

    object_id bigint(20) NOT NULL default 0,

    meta_key varchar(255) default NULL,

    meta_value longtext default NULL,

    PRIMARY KEY (meta_id),

    KEY object_type__meta_key (object_type, meta_key),

    KEY object_type__object_id__meta_key (object_type, object_id, meta_key)

    );

    CREATE TABLE mydb_global.wp_bb_posts (

    post_id bigint(20) NOT NULL auto_increment,

    forum_id int(10) NOT NULL default 1,

    topic_id bigint(20) NOT NULL default 1,

    poster_id int(10) NOT NULL default 0,

    post_text text NOT NULL,

    post_time datetime NOT NULL default ‘0000-00-00 00:00:00’,

    poster_ip varchar(15) NOT NULL default ”,

    post_status tinyint(1) NOT NULL default 0,

    post_position bigint(20) NOT NULL default 0,

    PRIMARY KEY (post_id),

    KEY topic_time (topic_id, post_time),

    KEY poster_time (poster_id, post_time),

    KEY post_time (post_time),

    FULLTEXT KEY post_text (post_text)

    ) TYPE = MYISAM;

    CREATE TABLE mydb_global.wp_bb_terms (

    term_id bigint(20) NOT NULL auto_increment,

    name varchar(55) NOT NULL default ”,

    slug varchar(200) NOT NULL default ”,

    term_group bigint(10) NOT NULL default 0,

    PRIMARY KEY (term_id),

    UNIQUE KEY slug (slug),

    KEY name (name)

    );

    CREATE TABLE mydb_global.wp_bb_term_relationships (

    object_id bigint(20) NOT NULL default 0,

    term_taxonomy_id bigint(20) NOT NULL default 0,

    user_id bigint(20) NOT NULL default 0,

    term_order int(11) NOT NULL default 0,

    PRIMARY KEY (object_id, term_taxonomy_id),

    KEY term_taxonomy_id (term_taxonomy_id)

    );

    CREATE TABLE mydb_global.wp_bb_term_taxonomy (

    term_taxonomy_id bigint(20) NOT NULL auto_increment,

    term_id bigint(20) NOT NULL default 0,

    taxonomy varchar(32) NOT NULL default ”,

    description longtext NOT NULL,

    parent bigint(20) NOT NULL default 0,

    count bigint(20) NOT NULL default 0,

    PRIMARY KEY (term_taxonomy_id),

    UNIQUE KEY term_id_taxonomy (term_id, taxonomy),

    KEY taxonomy (taxonomy)

    );

    CREATE TABLE mydb_global.wp_bb_topics (

    topic_id bigint(20) NOT NULL auto_increment,

    topic_title varchar(100) NOT NULL default ”,

    topic_slug varchar(255) NOT NULL default ”,

    topic_poster bigint(20) NOT NULL default 0,

    topic_poster_name varchar(40) NOT NULL default ‘Anonymous’,

    topic_last_poster bigint(20) NOT NULL default 0,

    topic_last_poster_name varchar(40) NOT NULL default ”,

    topic_start_time datetime NOT NULL default ‘0000-00-00 00:00:00’,

    topic_time datetime NOT NULL default ‘0000-00-00 00:00:00’,

    forum_id int(10) NOT NULL default 1,

    topic_status tinyint(1) NOT NULL default 0,

    topic_open tinyint(1) NOT NULL default 1,

    topic_last_post_id bigint(20) NOT NULL default 1,

    topic_sticky tinyint(1) NOT NULL default 0,

    topic_posts bigint(20) NOT NULL default 0,

    tag_count bigint(20) NOT NULL default 0,

    PRIMARY KEY (topic_id),

    KEY topic_slug (topic_slug),

    KEY forum_time (forum_id, topic_time),

    KEY user_start_time (topic_poster, topic_start_time),

    KEY stickies (topic_status, topic_sticky, topic_time)

    );

    CREATE TABLE mydb_global.wp_bb_users (

    ID bigint(20) unsigned NOT NULL auto_increment,

    user_login varchar(60) NOT NULL default ”,

    user_pass varchar(64) NOT NULL default ”,

    user_nicename varchar(50) NOT NULL default ”,

    user_email varchar(100) NOT NULL default ”,

    user_url varchar(100) NOT NULL default ”,

    user_registered datetime NOT NULL default ‘0000-00-00 00:00:00’,

    user_status int(11) NOT NULL default 0,

    display_name varchar(250) NOT NULL default ”,

    PRIMARY KEY (ID),

    UNIQUE KEY user_login (user_login),

    UNIQUE KEY user_nicename (user_nicename),

    KEY user_registered (user_registered)

    );

    CREATE TABLE mydb_global.wp_bb_usermeta (

    umeta_id bigint(20) NOT NULL auto_increment,

    user_id bigint(20) NOT NULL default 0,

    meta_key varchar(255),

    meta_value longtext,

    PRIMARY KEY (umeta_id),

    KEY user_id (user_id),

    KEY meta_key (meta_key)

    );

    Unfortunately, test user is still cannot create topic. BBpress forum is essentially broken.

    #56326
    Jeff Sayre
    Participant

    nightlyfe-

    Have you seen these codex articles?

    As for a listing of deprecated theme functions, your best bet is to look in the BuddyPress codebase, specifically in bp-core-deprecated.php (search for the string “/*** BEGIN DEPRECATED OLD BUDDYPRESS THEME SUPPORT ************/” and then also in bp-core-templatetags.php (search for the word “deprecated” and you will find a number of references).

    #56324
    Xevo
    Participant

    See the codex, https://codex.buddypress.org/.

    Best way to learn theme tags right now is just downloading a few buddypress themes and look at the source. Those on member blogs (if thats what you mean) applies to wpmu and has nothing to do with buddypress.

    Use this site (http://wpseek.com/browse/) to look at all wordpress and wpmu functions.

    #56322
    danbpfr
    Participant

    french version is now integrated in the plugin, so the above download link is closed.

    #56320
    arghagain
    Participant

    John, yes it say it did it successfully. I’m looking into defaults.bb-schema.php right now to see if I can find anything. I’m clueless now. Funny thing is that this file is not in buddypress plugin before, but I downloaded the buddypress again from buddypress.org and found it. This file supposed to be gone after buddypress got upgraded or installed?

    #56318
    Bowe
    Participant

    thanks.. I’ll download that one instead :)

    #56317
    arghagain
    Participant

    I did not use bbpress for buddypress 1.0.0, but after upgrade to buddypress 1.1.2, I use the one click install bbpress mode. No existing bbpress before that.

    #56315
    MrMaz
    Participant

    @Bowe:

    The most recent .pot file is in the latest version which is available for download from the plugin page.

    #56310
    Bowe
    Participant

    Thanks Chouf I’ll start working on it asap :)

    #56309

    BuddyPress uses the “display name” to know that they have filled out some profile information. It is the only *always* required field inside BuddyPress.

    Because WordPress is centered around the “username” and uses the “nicename” for slug purposes, we’re stuck with those no matter what. I like having my username be short for easy log ins if I can help it of course (sometimes “jjj” is already taken.), but I like my display name be my fullname because it’s how people recognize me.

    I don’t see a way around this any time soon. And like Andy said, internationally sometimes people have 4 or more names. I use my middle name, but having a “middle name” field isn’t always optimal either so I lump it in with my first name. (All those years of my mom yelling “John James you get over here this instant!!” must have stuck with me.) :)

    You can rename the primary name field to be whatever you’d like, which is designed to alleviate some of the confusion. It lets you decide what that field means to your users. The “username” is the only thing they can’t change, so they’re using that for life. :D

    #56304
    r-a-y
    Keymaster

    Hey glittereyes,

    Check out this post by Andy:

    https://buddypress.org/forums/topic/disallow-ordinary-users-to-create-groups#post-28404

    With this code, only site admins can create groups.

    #56303
    MrMaz
    Participant

    Just tagged v0.1.2 which has quite a few l10n fixes and some bug fixes. Voting should work for everyone now!

    #56302
    David Lewis
    Participant

    I’m guessing that the best place for this kind of feedback is https://trac.buddypress.org/

    Use your buddypress.org login, click “new ticket” and select “enhancement” as the Ticket Type.

    #56299
    Scotm
    Participant

    string(21) “http://myurl.com”

    #56298
    Tore
    Participant

    @ Andy:

    I’ve tried to do just this before but then the BP-forums (www.website.com/forums) wouldn’t display correctly. It seemed like the primary blog had to have a theme from which it could get the forum theming.

    #56296
    Andy Peatling
    Keymaster

    In your root blog template, open up header.php and add this to the bottom:

    <?php global $bp; var_dump( $bp->root_domain ); ?>

    then paste here what is output when you refresh your home page.

    #56294
    Scotm
    Participant

    Yes

    r-a-y
    Keymaster

    BuddyPress pre-1.1 had an option to do this via .CSV.

    But, it appears that option was removed in the latest versions of BP.

    Keep an eye on this ticket:

    https://trac.buddypress.org/ticket/1327

    to see what happens.

    #56292
    Andy Peatling
    Keymaster

    Blog ID 2 has a URL of community.domain.org?

    #56289
    Scotm
    Participant

    Gotcha. So does this eliminate the need for the BuddyPress plugin to be activated on a per blog basis (community versus root or across all blogs)?

    The code took fine, but the links are still looking for (rooturl/members/admin/profile) versus (community.rooturl/members/admin/profile).

    What am I missing?

    #56287
    Andy Peatling
    Keymaster

    No square brackets around the ID.

    #56286
    Scotm
    Participant

    Andy

    define( ‘BP_ROOT_BLOG’, [2] ); in my wp-config file gets me the white screen of death.

    Thoughts?

    #56285
    Scotm
    Participant

    Andy

    Thanks!

    #56284
    Kapil
    Participant

    Hey Jeff Thanks!It worked!

    It seems screen_function is mandatory here…! Where Codex says its optional.(https://codex.buddypress.org/developer-docs/functions/core/bp_core_new_nav_item/)

    #56274
    circuit
    Participant

    Hey Xevo, how far did you get with this? I think my problem may be related.

    https://buddypress.org/forums/topic/members-who-create-blogs-lose-all-permissions-on-main-blog

Viewing 25 results - 61,001 through 61,025 (of 69,047 total)
Skip to toolbar