Search Results for 'buddypress'
-
AuthorSearch Results
-
July 7, 2010 at 2:59 am #84545
In reply to: how to access to bbpress admin from buddypress??
alanchrishughes
ParticipantI installed both in the same database.
July 7, 2010 at 2:56 am #84544In reply to: how to access to bbpress admin from buddypress??
alanchrishughes
ParticipantYeah I installed them both locally using MAMP.
I tried it again tonight and when I log in to bbpress it will log me in to buddypress, but when I log in to buddypress it doesn’t log me in to bbpress. I went in to buddypress to the forum setup tab and did the integration from an existing forum thing, but that just set up the groups forums again. I created a group and stated a forum and topic, the group appeared as a subforum on bbpress and the posts appeared there. When I posted on in it bbpress it appeared in the group on buddypress, and group posts appear on bbpress.
I went back to the forum setup tab and it said:
“NOTE: The forums directory will only work if your bbPress tables are in the same database as your WordPress tables. If you are not using an existing bbPress install you can ignore this message.”
Which is something over my head, I don’t even know what a table is.
July 7, 2010 at 2:12 am #84541In reply to: Avatars aren’t shown after the upgrade
bennadler
MemberHere is the code I used. Put this in bp-custom.php in your plugins folder, and it should correctly display your user’s BP avatar across an entire WordPress MU install. Lemme know if it works!

function nfm_bp_avtar_upload_path_correct($path){
if ( bp_core_is_multisite() ){
$path = ABSPATH . get_blog_option( BP_ROOT_BLOG, ‘upload_path’ );
}
return $path;
}
add_filter(‘bp_core_avatar_upload_path’, ‘nfm_bp_avtar_upload_path_correct’, 1);function nfm_bp_avatar_upload_url_correct($url){
if ( bp_core_is_multisite() ){
$url = get_blog_option( BP_ROOT_BLOG, ‘siteurl’ ) . “/wp-content/uploads/”;
}
return $url;
}
add_filter(‘bp_core_avatar_url’, ‘nfm_bp_avatar_upload_url_correct’, 1);Originally found here: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/custom-avatars-arent-shown-on-single-blogs-in-wpmu/
July 7, 2010 at 2:07 am #84540In reply to: Avatars aren’t shown after the upgrade
bennadler
MemberIt has to do with where Buddypress is looking for your uploaded avatars. By default, it is pointed to the right place. I don’t remember the exact code to fix it, but I’ll look it up right now to help you out. It fixed the issue for me, so hopefully it will for you. Be back soon.
July 7, 2010 at 2:03 am #84538In reply to: User lost activation email
Philo Hagen
ParticipantI’m pretty new to Buddypress and WordPress. Launched my first site today with 95% of the “i can’t find my registration” emails solved by directing them to their spam folders. But beyond that I have three that can’t find their email, say it’s not in their spam folder, and I need to get em in. Opened phpadmin and didn’t see a “wp_signsup” listing. Checked out “wp_users” and found user_activation_key and there’s a list of 30 things and two of them have keys next to them. They’re different keys. How do I know which one to use? And how exactly do I use it. Do I go to the mydomain.com example url above and enter this key and then that gets them in? Or do I give them the key and they do that? Any insights most appreciated.
July 6, 2010 at 11:45 pm #84529In reply to: Avatars aren’t shown after the upgrade
Doug
Participant@john-james … I have the same issue. Here is the thread in question if you find it helpful.
July 6, 2010 at 11:43 pm #84528In reply to: Missing avatars with WP3.0 & BP1.2.5
Doug
Participant@r-a-y – That is a reference to the current live site, which is built of of WordPress 2.7 (not WPMU). To build this new site (dev.neoncon.com) copied the DB and files to dev and did upgrades from there. So, those references, which only exit within posts, should be broken.
The issue is with new uploads, specifically the avatars for members and groups.
July 6, 2010 at 10:30 pm #84514In reply to: Avatars aren’t shown after the upgrade
Ali Erkurt
Participant@johnjamesjacoby Yeah John. I see the files in the directory but there is a problem to reach them. When I try to go to the url files/avatar.jpg it says “Not Found”. I try to go to the wp-content/blogs.dir/1/files/avatar.jpg it says “Not found” again. So there’s a huge problem and ? really need to fix it. Hope you help me asap
because my site is still down.July 6, 2010 at 9:46 pm #84511In reply to: TwentyTen child theme for BuddyPress
Andrea Rennick
ParticipantYeah, that’s a styling issue I’ll have to fix.

Add this to the stylesheet:
ul.item-list li {
clear:both;
}July 6, 2010 at 9:13 pm #84510In reply to: iPhone app for BuddyPress
bpisimone
ParticipantA facebook like iPhone app would be crazy. +1
July 6, 2010 at 8:46 pm #84507In reply to: Missing avatars with WP3.0 & BP1.2.5
ronia
ParticipantJuly 6, 2010 at 8:36 pm #84504In reply to: How to disable WP sidebar from all buddypress pages
caplain
MemberResolved. My solution (in sidebar.php) has been amended to http://buddypress.pastebin.com/tkUDryN3
Thanks for pointing me in the right direction.
July 6, 2010 at 8:18 pm #84501In reply to: Avatars aren’t shown after the upgrade
ronia
ParticipantWordpress 3
Buddypress 1.2.5.2
Fresh new installations
(No upgrades, no conversions, just Multisite/multiblog and subdirectory from the beginning)
Sample blog post – http://kmela.net/kc/newdemo/2010/07/06/new-post-one/
Sample activity stream – http://kmela.net/kc/members/newdemo/activity/User newdemo is confused as she uploaded her avatar from BP but cannot see that in her blog comment
July 6, 2010 at 8:10 pm #84500In reply to: How to disable WP sidebar from all buddypress pages
caplain
MemberI discovered the problem: I’m using a widgetized theme, so dynamic_sidebar() is being used. Now I have to figure out where that is called to see if I can wrap that in a ‘if(bp_is_blog_page()){}’…
July 6, 2010 at 7:56 pm #84497Pisanojm
Participant@rossagrant There was a trac. supposed to be fixed for this…
https://trac.buddypress.org/ticket/2405If it’s still not working maybe others can confirm and the Ticket should be re-opened… Anyone else getting either of these two problems?
July 6, 2010 at 7:50 pm #84496Paul Wong-Gibbs
KeymasterThis is a feature that will make it into a future release of Achievements, but doesn’t do the same thing currently
July 6, 2010 at 7:49 pm #84494In reply to: Issue with Member Profiles Redirecting to Homepage
Andy Bailey
Participant@rossagrant I have tracked the problem down to a child theme function. The developer was actually the one who fixed it, it was due to removing some of the sub nav items.
all is good again now!
July 6, 2010 at 7:41 pm #84493In reply to: Missing avatars with WP3.0 & BP1.2.5
Doug
Participant@r-a-y – That .htaccess fixed the circular loop issue and appears to be getting us closer. But, now when I try to upload a new avatar, I get this error.
Upload Failed! Error was: The uploaded file could not be moved to /scratch/VHOSTS/neoncon.com/dev/public/wp-content/blogs.dir/1/files/group-avatars/4.Another odd thing, you said the avatars are stored in wp-content/uploads? I show nothing in the dir.
July 6, 2010 at 7:21 pm #84492rossagrant
Participant@pisanojm I have just updated to BP 1.2.5.2 and although I don’t get a 4 or 5 hours issue I do get a general, ‘sent sometime ago’ time on PM’s that I have only just sent. The time stamp is correct on my inbox page but when i open the message it just states, ‘sent sometime ago’.
Anyone else getting this?
July 6, 2010 at 7:16 pm #84491In reply to: TwentyTen child theme for BuddyPress
Marco Giustini
Participant@Andrea_r: I have some avatars visualization problems, like these:
http://www.grillo16.org/blogs/
http://www.grillo16.org/members/
http://www.grillo16.org/members/admin/blogs/How could I solve them?
July 6, 2010 at 7:04 pm #84490In reply to: Avatars aren’t shown after the upgrade
Ali Erkurt
Participant@r-a-y I also applied 1.2.5.2 and nothing changed…
July 6, 2010 at 7:01 pm #84489In reply to: Displaying user profile
xrun
Member@johnjamesjacoby
So what you are saying is that I’ll probably have less issues if going with a subdirectory structure for the multiblog setup, than I currently do with a multisite subdomain structure? It makes sense as long as the root domain constantly seems to be the variable, so to speak.
Edit: I just backed up my database and files, and upgraded to BP 1.2.5.2. Neither uploaded avatars nor gravatars are showing on main domain pages nor subdomain blog pages.
Edit 2: I spoke too soon. Sorry. After removing the code added to bp-custom.php earlyer today the avatars and gravatars seem fine on both main- and subdomains. Just didn’t think to remove that after the upgrade. Excellent.
July 6, 2010 at 6:59 pm #84488In reply to: New BP Chat plugin for Buddypress
silversurferes
Participantdo nobondy have this problem???
i´ve had this problem after update Buddypress to the actual version
can somebody help me??
July 6, 2010 at 6:57 pm #84487In reply to: How to disable WP sidebar from all buddypress pages
caplain
MemberI tried your solution in page.php
if (bp_is_blog_page()) {
get_sidebar();
}My sidebar still appeared on all BP pages.
July 6, 2010 at 6:03 pm #84483Jeff Sayre
ParticipantIt can be intimidating using Trac. But, don’t worry. You will not break anything. There are people who monitor Trac very closely ( @DJPaul, for instance), keeping it in good order, correcting any issues.
You will become more confident in participating in the bug tracking system over time. Thank you for your contributions.
-
AuthorSearch Results