Can you confirm that they are making it back to the bbpress tables correctly? IE if you open the post in bbpress, are they already corrupt?
Or is it only when they get displayed back to Buddypress?
Also if you make a post in bbpress, does it show up in buddypress correctly or is it corrupt there also?
Answering these questions may help to narrow down the bug, or may prove to be a wide spread issue.
Sorry I couldn’t give you a solution, but first we must understand the problem at hand.
Brad
I would like add a subnav menu in a single group page (only for admin), here is my code, but it doesnt’ work
function bpdev_my_nav_setup_nav() {
global $bp, $is_single_group, $group_obj;
if ( $is_single_group ) {
$grouppo_link = $bp['root_domain'] . '/' . $bp['groups']['slug'] . '/' . $group_obj->slug . '/';
bp_core_add_subnav_item( $bp['groups']['slug'], 'update-position', __('My nav', 'buddypress'), $grouppo_link, 'bpdev_mynav', false, BP_Groups_Member::check_is_admin( $bp['logged_userid'], bp_group_id(false) ) );
}
}
of corse after it my function bpdev_mynav
UPDATE: it returns on my profile page
Can you add this to http://trac.buddypress.org as an enhancement?
There is probably a filter on the_author_posts_link() that you can use to replace the link.
theuseruper – thanks for pointing me over here, although I still don’t have any answers, I’m having a similar problem.
https://buddypress.org/forums/topic.php?id=957
I don’t think it’s my server, as my site was working great for months before I upgraded.
PerS
Yes, I’ve looked at that exact plugin. Unfortunately, if you read the comments it appears the plugin is not working since Automattic acquired Gravatar.com. Does that make any sense? You would think Automattic would do everything it can to speed up the use of gravatars and to make it easier to signup within WordPress. Surely someone smarter than me can use that plugin as a base for what’s needed here?
Andy, can you chime in here?
Thx
@scotm I agreee 100%. Maybe this plugin could be adapted to BuddyPress: http://txfx.net/code/wordpress/gravatar-signup/
I still believe the universal solution is to sync buddypress with gravatar.com within the profile area in BP. Rather than have users upload an avatar, have them sign up for a gravatar and be done with it. The cropping issue is in part tied to the presentation of the larger avatar, a feature which I believe is pointless anyhow.
Does anyone know a way to do this?
Thx
I am looking for someone to convert my existing customized wordpress installation to buddypress without losing data.
UPDATE: I’ve uninstalled all the BuddyPress plugins and the problem persists. Must not have to do with BuddyPress. Is just more obvious with BuddyPress. Hmmm…. Any ideas, I’d love to hear them.
-dh
Earlier today I was running WPMU 2.6.5 with the latest BuddyPress-Combo install from this site. Everything was working except for the Forums. I upgraded to WPMU2.7. Everything is still working fine with WPMU (no 404’s, no blank pages, can comment, can post), but BuddyPress no longer works. Any time I click on any BP feature link it takes me to a page to create a new blog.
Here’s the link to my site: http://blog.bssd.org/mu/
You can recreate the problem without even logging in. Just click on “Home,” “News,” “Members,” “Groups,” or “Blogs.”
One thing I noticed that it may be attempting to redirect me to the wrong URL. If you click on the “Members” tab you are supposed to go here <http://blog.bssd.org/mu/members/>, but end up going here <http://blog.bssd.org/mu/mumembers/>. Why is it doing this?
-dhargraves
mydomain.com/members/admin/profile/change-avatar page source showed that my avatar image looked something like “http://mydomain.com/GD Image Library not loaded”.
The solution was to get the GD Image Library turned on.
1) open php.ini in wordpad and uncomment the line
extension=php_gd2.dll
2) copy the php_gd2.dll from the C:php5extras folder and place with the php.ini file
3) in IIS open Application Pools and right click on DefaultAppPool and select Recycle ( you don’t have to restart IIS)
Then I used the Change Avatar page and finally after weeks of tooling around my avatars are loading. Yahoo!!
hi oldskoo,
you get wrong by retrieving the (get locale() because at the next update of your bp-core.php file, this will be back again.
And what do you think what are the language settings on site and blogs for ?
wp-content/mu-plugins/bp-languages/buddypress-' . get_locale(). '.mo'
this line means /path/to/your/locale language settings and call the translation file buddypres-en.mo (note the hyphen)
get_locale() comes sometimes along with get_domain(), who entend something like en_US.mo or de_DE…
You will find some functions using locale() and domain() in wp-includesl10n.php
wich is one of the language setting file.
I’ve got my BP installed in a sub-directory (“/members”). Everything seems to be working pretty well on the home side – but not the entire members section. Clicking on anything under the “My Account” tab gives a Page Not Found error. It must have something to do with the location of the buddypress-member directory, but I’ve tried all of the obvious locations – inside wp-content, as well as in the root, in and out of the member-themes directory, etc.
I read here that there were issues with subdirectories in the past – is that still the case or has it been resolved? I’m running MU 2.7 and the BP combo pack – should I upgrade something from the trunk? Thanks!