Search Results for 'buddypress'
-
AuthorSearch Results
-
March 12, 2010 at 3:41 pm #67967
In reply to: Add new functionality called "Posts"
Boone Gorges
KeymasterI’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.
March 12, 2010 at 3:37 pm #67965In reply to: BuddyPress Pages Not Viewing
tamilhood
MemberYes, 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.
March 12, 2010 at 3:14 pm #67962Tosh
ParticipantHello, hellllo, helllooo.
March 12, 2010 at 3:05 pm #67960In reply to: New WP-BP Install, /Forums Refuses To Work
sms1962
ParticipantIMHO 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_
March 12, 2010 at 2:31 pm #67951In reply to: Email notification not working
ruthlessbookie
Memberso 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.
March 12, 2010 at 2:25 pm #67950In reply to: Invite Friends From Profile
Giovanni Caputo
Participanti will fix my plugin from 1 april 2010. i will make it usable on worpdpress mu + buddypress, wordpress + bp and wordpress…
Sorry
March 12, 2010 at 2:04 pm #67948In reply to: Buddypress forum (bbpress) profile custom fields
enzyad
Participantup
March 12, 2010 at 1:47 pm #67946In reply to: Select languages
nickmy
ParticipantI 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
??
March 12, 2010 at 12:10 pm #67936In reply to: Activity Stream: Blog posts only
nickrita
Participantliveview, boone found a solution! Look here:
https://buddypress.org/forums/topic/how-can-i-set-show-newblogposts-as-default-on-acitivity-stream
March 12, 2010 at 12:06 pm #67934nickrita
ParticipantBoone, 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
March 12, 2010 at 10:59 am #67932In reply to: 404 on every link
gadgetguruil
Membersame 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
March 12, 2010 at 9:11 am #67922wordpressthemes
Memberthank you.
March 12, 2010 at 8:24 am #67919Xevo
ParticipantWpmu has user blogs, wp single does not.
March 12, 2010 at 7:27 am #67916In reply to: BuddyPress Pages Not Viewing
Paul Wong-Gibbs
KeymasterDid you configure the pretty permalinks on your WP install?
March 12, 2010 at 4:52 am #67905In reply to: Group Documents 0.3.0 Released
PJ
ParticipantDid 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.
March 12, 2010 at 3:35 am #67901In reply to: Help migrating my site to a new server
Psyber
ParticipantI 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.
March 12, 2010 at 3:20 am #67899rich! @ etiviti
Participantsorry 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 );
}March 12, 2010 at 2:37 am #67895In reply to: Avatars / profile-pictures
michaelmarian
ParticipantI 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.
March 11, 2010 at 11:03 pm #67875Boone Gorges
Keymasteretiviti – 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.
March 11, 2010 at 11:03 pm #67874In reply to: phpbb3 conversion to buddypress forums
Paul Wong-Gibbs
KeymasterI’ve really got no idea where your <!– m –> is coming from. is this an artifact introduced by the phpBB exporter?
March 11, 2010 at 11:00 pm #67872Paul Wong-Gibbs
Keymasterdo_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.
March 11, 2010 at 10:56 pm #67869In reply to: Buddypress version of wordpress 'mystique' theme?
Andrea Rennick
ParticipantSend 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.
March 11, 2010 at 10:55 pm #67868In reply to: New WP-BP Install, /Forums Refuses To Work
r-a-y
KeymasterDid 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
March 11, 2010 at 10:55 pm #67867In reply to: New WP-BP Install, /Forums Refuses To Work
Paul Wong-Gibbs
KeymasterHm, 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?
March 11, 2010 at 10:50 pm #67865In reply to: new version of BuddyPress Rate Forum Posts
r-a-y
KeymasterI 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']); -
AuthorSearch Results