Search Results for 'buddypress'
-
AuthorSearch Results
-
May 8, 2009 at 11:20 pm #44844
Jeff Sayre
ParticipantMariahneu-
First of all, we need some additional information:
- Which version of WordPress Mu are you running?
- From where (provide link) did you download WPMU?
- Which version of BuddyPress are you running?
- Did you open any of the BuddyPress files?
- Did you alter any of the BuddyPress files?
May 8, 2009 at 11:07 pm #44843In reply to: The page you were looking for was not found.
Jeff Sayre
ParticipantAfter disabling bphome and just running on the classic wordpress theme whenever I visit any of the pages that involve BP scripts I get the error.
A classic WordPress theme will not work with BuddyPress. There is BP-specific code within BP themes and BP theme folders. The question is, what happens when you use the standard BP themes that come with BuddyPress?
Also, after switching to the standard BP themes, and if you’re still having issues, then you should set PHP to run on version 5 instead of 4 and see what happens.
May 8, 2009 at 10:43 pm #44842In reply to: BuddyPress and Multi-Site issues
Marcin Biegun
ParticipantNot yet. To do that we’ll need to save also in buddypress tables id of assigned site, or – probably easier to accomplish – create different instances of buddypress with all tables for each site.
Till now i found out that manipulating with define( ‘BP_ROOT_BLOG’, $blog_id ); (line 16,bp-core) i can make social part avaiable from each site. the problem is that avatars on other sites disappeared and – of course – i’m afraid about google and duplicated content issue.
My goal is to have on ‘global’ buddypress instance and ‘local’ buddypress instances for each site. The only thing i’m afraid about is number of tables and queries to load each site on such a configuration…
May 8, 2009 at 9:22 pm #44840In reply to: BuddyPress and Multi-Site issues
anemec
ParticipantWere you also able to separate out the friends and groups so that the groups and friends associated with Site A were not seen by people on Site B?
May 8, 2009 at 9:11 pm #44839In reply to: BuddyPress and Multi-Site issues
Marcin Biegun
ParticipantOps – part to site_id should be as follows:
function my_bp_adminbar_authors_menu() {global $current_blog,$wpdb;
$blog_url = get_blog_option($current_blog->blog_id, 'siteurl' );
$blog_url_pieces = explode("/", $blog_url);
$blog_url = $blog_url_pieces[2];
$site_id = $wpdb->get_var( "SELECT COUNT(*) FROM wp_site WHERE domain='".$blog_url."'");
May 8, 2009 at 9:00 pm #44838In reply to: The page you were looking for was not found.
Will White
ParticipantI’ve redownloaded everything back to the original server, and even made sure to upload (specifically) the bp-themes folder from here. After disabling bphome and just running on the classic wordpress theme whenever I visit any of the pages that involve BP scripts I get the error.
You do not have any BuddyPress themes installed.
Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes/” and refresh this page. You can download more themes here.
The files are in the right place and when I go to BuddyPress settings as a site administrator both the bpmember and skeleton member themes are available. I’ve tried the click it method I’ve seen in other posts but its not working. Do you have another tactic at fixing that situation? I think that is whats causing the majority of these 404’s.
May 8, 2009 at 8:01 pm #44834In reply to: BuddyPress and Multi-Site issues
Marcin Biegun
ParticipantUpdated bp_adminbar_authors_menu to hide authors on additional main sites
//HOOKS FOR TOP MENU - AUTHORS
remove_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 );
add_action( 'bp_adminbar_menus', 'my_bp_adminbar_authors_menu', 12 );
// **** "Blog Authors" Menu (visible when not logged in) ********
function my_bp_adminbar_authors_menu() {
global $current_blog,$wpdb;
$site_id = $wpdb->get_var( "SELECT COUNT(*) FROM wp_site WHERE id=".$current_blog->blog_id);
//$numrows = $wpdb->num_rows($site_id);
if ( $site_id!
'1' ) {
$authors = get_users_of_blog();
if ( is_array( $authors ) ) {
/* This is a blog, render a menu with links to all authors */
echo '<li id="bp-adminbar-authors-menu" class="'.$site_id.'"><a href="/">';
_e('Blog Authors', 'buddypress');
echo '</a>';
echo '<ul class="author-list">';
foreach( $authors as $author ) {
$author = new BP_Core_User( $author->user_id );
echo '<li>';
echo '<a href="' . $author->user_url . '">';
echo $author->avatar_mini;
echo ' ' . $author->fullname;
echo '<span class="activity">' . $author->last_active . '</span>';
echo '</a>';
echo '<div class="admin-bar-clear"></div>';
echo '</li>';
}
echo '</ul>';
echo '</li>';
}
}
}May 8, 2009 at 6:51 pm #44828In reply to: Will there be a v1.1 bug fix release coming soon?
Burt Adsit
ParticipantYou can keep up on the changes to bp through svn.
https://svn.buddypress.org/trunk
Some related forum topics:
Burt Adsit
ParticipantWarning: bp_show_register_page(BP_PLUGIN_DIR/bp-core/bp-core-signup.php) [function.bp-show-register-page]: failed to open stream: No such file or directory in /home/www/missionaries.net/wp-content/themes/buddypress-home/functions.php on line 70
Did you deactivate the bp plugin? It doesn’t seem to be running. If it’s not available for selection then check the /wp-content/plugin dir for it’s existence. If it doesn’t exist reinstall it.
Finding out why it got deactivated or it doesn’t exist anymore would be the next step.
May 8, 2009 at 5:47 pm #44817In reply to: BuddyPress Skeleton Component v1.2 RC-2
belogical
Participantgreat addition Burt, didn’t even think about that. it works great!
May 8, 2009 at 4:18 pm #44814In reply to: BuddyPress Skeleton Component v1.2 RC-2
Burt Adsit
Participantcustom.css doesn’t work in this case people? custom.css should override base.css without a direct edit of base.css. I’m just getting to this at the end of the discussion.
May 8, 2009 at 3:52 pm #44813In reply to: BuddyPress Skeleton Component v1.2 RC-2
belogical
ParticipantJotem = Genius!
That worked, thanks! I hate core hacks, but looks like it wasn’t going to work any other way.
May 8, 2009 at 3:35 pm #44811In reply to: black avatars
Jeff Sayre
ParticipantEvvscuba-
We have no idea what setup you’re running? Which version of WPMU, of BuddyPress? How did you install them? Did you upgrade WPMU? If so, from which version and how?
Also, please first visit and read the link I provided in the second post. If the suggestions there do not solve your problem, then answer my additional questions in the fourth post.
May 8, 2009 at 3:27 pm #44809In reply to: 404 /blog /members etc… RC2 WPMU 2.7.1
Jeff Sayre
ParticipantOkay, I’ve reread this thread for the second time. You state that:
The problem must be with the data; since a fresh install works perfectly and after the data gets imported, I get the nasty 404 bug.
Andy’s answer is:
This is normal with WPMU, you are not going to be able to transfer over blog tables as there are all sorts of URL settings in the DB.
I have a few questions based on this interchange:
- Which version of MySQL are you (is your host) running?
- Have you tried repairing the DB tables before reimport?
- Are you moving your data between different domains?
Since WPMU 2.7.1 + BuddyPress 1.0 + standard themes work fine with a new, empty MySQL DB, the issue is, as you state, with the data. Either you have data corruption, indices that need reindexing, or hardcoded links within the tables that are causing the 404s.
If the domain mapping is not identical to the hardcoded links in your WPMU tables, you will have issues.
So, here’s what I’d suggest:
- Backup your data again
- Then, repair/reindex
- Then, if your domain mapping is not identical, follow these instructions keeping in mind that these articles are for WP and not WPMU. You’ll have to adjust accordingly:
May 8, 2009 at 3:26 pm #44808In reply to: Buddypress theme for bbPress ?
rrijke
ParticipantIlya,
I’m working on a project where i must integrate WPMU, buddypress and bbpress all together.
http://terafriu.com/forum/ is the forum page. I have modified the kakumei theme that came with bbpress. Changing the header and footer will go a long way. But it ultimatly depends on what you are trying to acheive. For the time being you’ll either have to create/modify your own.
Keep in mind that Buddypress is a fairly new application and we should be gratefull to get such an application for free! When the important stuff like bug fixes etc are resolved we will see tons of themes, just like WordPress.
May 8, 2009 at 2:32 pm #44799In reply to: How to add pages to the navigation?
alunsina
Participanthere’s something i have lying around. i’m not sure where i got it. not very good at records:

<?php
function add_about_to_main_menu() {
$class = (bp_is_page(‘about’)) ? ‘ class=”selected” ‘ : ”;
echo ‘<li ‘ . $class. ‘>‘ . __( ‘About’, ‘buddypress’ ) .’‘;
}
add_action(‘bp_nav_items’,’add_about_to_main_menu’);
?>
end here.
create this as something like aboutmenu.php then edit the link (href part). this way you wont have to muck around the theme files.
hope that helped!
May 8, 2009 at 2:23 pm #44796In reply to: Visit Random Member BuddyPress 1.0 Not Work
Burt Adsit
ParticipantYep. Bug in 1.0. Looking at it.
May 8, 2009 at 1:59 pm #44795In reply to: BuddyPress Skeleton Component v1.2 RC-2
Jan M.
ParticipantYou’ll have to edit the css-file in your member-theme.
In the css/base.css file you’ll find something like this:
li a#user-settings, li a#my-settings {
background: url(../images/settings_bullet.gif) 88% 52% no-repeat;
}
Just copy that and change the “a#user-settings” to whatever fits your component, like “a#the-navigation-slug”. Don’t forget to put your image in the according folder and changing the name in the code to that name.
May 8, 2009 at 1:48 pm #44793In reply to: Buddypress RC2 Logout Bug
Burt Adsit
ParticipantThis is a wpmu/bbpress integration issue not a bp issue as far as I can tell. Since this is not a bp support issue, marking the thread as such.
May 8, 2009 at 1:32 pm #44787In reply to: BuddyPress Skeleton Component v1.2 RC-2
belogical
Participantbump
May 8, 2009 at 1:28 pm #44786In reply to: Static Front Page, Blog Link Doesn’t Work
belogical
Participantyou are close, I want this:
domain.com (static page)
domain.com/blog (list all my blog posts, index.php)
domain.com/home (buddypress home page, home.php)
i have everything working, except the /blog link.
with that being said, what code do I need in my index.php in order to pull the “normal home page” blogs posts? right now it looks at the WP radio button and just pulls the “static” page, which ends up being a link back to domain.com. i want domain.com/blog to list all my posts. i tried the normal:
<?php while (have_posts()) : the_post(); ?>, but I assume that looks at the WP static flag that I set, which will no longer pull the posts. how do I get around this?May 8, 2009 at 6:14 am #44773In reply to: Buddypress RC2 Logout Bug
arghagain
ParticipantYa BBPress makes u mess with cookies and I didn’t like it. I have a hard time to make it work, but removing BBPress, the BuddyPress is still working fine. BBPress is only a module, and so it shouldn’t affect the whole BuddyPress.
May 8, 2009 at 6:09 am #44772In reply to: Visit Random Member BuddyPress 1.0 Not Work
arghagain
Participantanyone know a solution to this?
May 8, 2009 at 6:07 am #44771In reply to: Problems Installing BBPress
John James Jacoby
KeymasterIf you don’t want to believe me, that’s okay, but that doesn’t make me any less right.

bbPress .9 may integrate with BuddyPress 1.0, but it isn’t the recommended version and it will be more difficult to make them work nicely together.
May 8, 2009 at 5:26 am #44768In reply to: Editing Extended Profiles in Admin Panel
KitWit
ParticipantI can always login as the user and edit the profile, or pretend to be the user and sign up the old-fashioned way. Anyway, the problem is solved, even if it is a bit of a workaround to get there.
Future improvement to BuddyPress would be to have this profile-editing feature available to the all-powerful admin!
Thanks!
-
AuthorSearch Results