Search Results for 'buddypress'
-
AuthorSearch Results
-
November 9, 2009 at 11:59 pm #56327
arghagain
ParticipantAfter 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.
November 9, 2009 at 11:51 pm #56326In reply to: Theme reference guide for 1.1?
Jeff Sayre
Participantnightlyfe-
Have you seen these codex articles?
- https://codex.buddypress.org/developer-docs/conditional-template-tags/
- https://codex.buddypress.org/developer-docs/custom-buddypress-loops/
- https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
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).
November 9, 2009 at 11:45 pm #56324In reply to: Theme reference guide for 1.1?
Xevo
ParticipantSee 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.
November 9, 2009 at 11:31 pm #56322In reply to: New Plugin – BuddyPress Links – Beta Support
danbpfr
Participantfrench version is now integrated in the plugin, so the above download link is closed.
November 9, 2009 at 10:45 pm #56320arghagain
ParticipantJohn, 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?
November 9, 2009 at 10:19 pm #56318In reply to: New Plugin – BuddyPress Links – Beta Support
Bowe
Participantthanks.. I’ll download that one instead
November 9, 2009 at 10:17 pm #56317arghagain
ParticipantI 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.
November 9, 2009 at 10:10 pm #56315In reply to: New Plugin – BuddyPress Links – Beta Support
MrMaz
ParticipantThe most recent .pot file is in the latest version which is available for download from the plugin page.
November 9, 2009 at 9:38 pm #56310In reply to: New Plugin – BuddyPress Links – Beta Support
Bowe
ParticipantThanks Chouf I’ll start working on it asap
November 9, 2009 at 9:32 pm #56309In reply to: fullname vs username vs first + last name…
John James Jacoby
KeymasterBuddyPress 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.
November 9, 2009 at 8:37 pm #56304In reply to: REQUEST: Able to limit who can only create groups
r-a-y
KeymasterHey 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.
November 9, 2009 at 8:35 pm #56303In reply to: New Plugin – BuddyPress Links – Beta Support
MrMaz
ParticipantJust tagged v0.1.2 which has quite a few l10n fixes and some bug fixes. Voting should work for everyone now!
November 9, 2009 at 8:34 pm #56302In reply to: REQUEST: Able to limit who can only create groups
David Lewis
ParticipantI’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.
November 9, 2009 at 8:15 pm #56299In reply to: Buddypress on all but Root Blog
Scotm
Participantstring(21) “http://myurl.com”
November 9, 2009 at 8:06 pm #56298In reply to: Buddypress on all but Root Blog
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.
November 9, 2009 at 7:10 pm #56296In reply to: Buddypress on all but Root Blog
Andy Peatling
KeymasterIn 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.
November 9, 2009 at 7:00 pm #56294In reply to: Buddypress on all but Root Blog
Scotm
ParticipantYes
November 9, 2009 at 6:56 pm #56293r-a-y
KeymasterBuddyPress 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.
November 9, 2009 at 6:55 pm #56292In reply to: Buddypress on all but Root Blog
Andy Peatling
KeymasterBlog ID 2 has a URL of community.domain.org?
November 9, 2009 at 6:38 pm #56289In reply to: Buddypress on all but Root Blog
Scotm
ParticipantGotcha. 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?
November 9, 2009 at 6:31 pm #56287In reply to: Buddypress on all but Root Blog
Andy Peatling
KeymasterNo square brackets around the ID.
November 9, 2009 at 6:30 pm #56286In reply to: Buddypress on all but Root Blog
Scotm
ParticipantAndy
define( ‘BP_ROOT_BLOG’, [2] ); in my wp-config file gets me the white screen of death.
Thoughts?
November 9, 2009 at 6:17 pm #56285In reply to: Buddypress on all but Root Blog
Scotm
ParticipantAndy
Thanks!
November 9, 2009 at 6:14 pm #56284In reply to: problem displaying single item
Kapil
ParticipantHey 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/)
November 9, 2009 at 4:43 pm #56274In reply to: Auto assign role to user on certain blog
circuit
ParticipantHey 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
-
AuthorSearch Results