Search Results for 'buddypress'
-
AuthorSearch Results
-
January 12, 2009 at 11:36 am #36152
Burt Adsit
Participantrealfam, bp covers wpmu, bbpress and bp itself. We try to address all three environments simply because we *have to* to get bp running. That thread was a little off topic for the forums. Even though it did relate to wpmu sorta, kinda.
Then again I just get cranky at times.
January 12, 2009 at 11:09 am #36149In reply to: “escape” characters in Group forum posts
Burt Adsit
ParticipantThis thread contains non core mod fixes for the above issues:
January 12, 2009 at 5:04 am #36144In reply to: Differences between BP & MU 2.6.5 & MU 2.7
Maxaud
Participantok, instead of downloading latest.zip from:
buddypress.org/download/
I downloaded the trunk version from:
trac.buddypress.org/browser/trunk
I added these and it now works correctly.
I assumed the latest.zip was the latest development version.
Andy,
The download link from subdomains of buddypress.org (ex: codex.buddypress.org) bring you to a 404 page since it’s probably coded in to be “/download” instead of the full url.
January 12, 2009 at 1:53 am #36135In reply to: Translating BuddyPress
sunya
Memberapeatling said very clearly, in accordance with what he said to do it, very simple, good luck.
January 12, 2009 at 1:45 am #36134In reply to: Translating BuddyPress
4inflater
MemberMy translator a language package, I e-mail to you, you increased to download the page to be possible?
January 11, 2009 at 11:43 pm #36127Burt Adsit
ParticipantI thought about doing the same thing. I setup 2 instances of bbpress. One for groups and one for ‘the community’. The groups forums were hidden. I didn’t like it too much. I wanted the public groups to be public forums but read only until users joined a group. I also wanted the private and hidden groups to have hidden forums.
See this thread: https://buddypress.org/forums/topic.php?id=696
January 11, 2009 at 11:27 pm #36124Per Søderlind
ParticipantJanuary 11, 2009 at 9:38 pm #36120In reply to: Differences between BP & MU 2.6.5 & MU 2.7
Maxaud
ParticipantWPMU 2.7 is available at mu.wordpress.org trunk (not offically released yet)
The BuddyPress.org site states that BuddyPress is being developed on the latest Trunk version of WPMU so I assumed that this stuff should show on the settings page.
I know a lot of people here are working off the 2.7 version. (look at testbp.org)
Is anyone showing these options on 2.7?
January 11, 2009 at 6:09 pm #36107In reply to: can a user enter his own password at registration?
fishbowl81
ParticipantIt can, but the amount of spam accounts will increase dramatically. The reason for sending the account password via e-mail is to prevent spammers from simply entering a known username and password and creating 1000’s of spam blog posts on wordpress mu.
I have a similar situation, where I have a current site with 15k users, username and passwords. What I used is this plugin. It works well on wordpress and buddypress.
https://wordpress.org/extend/plugins/external-database-authentication/
When a user logins, it checks my “other” database for the username, and validates the password against it. This means they don’t need to do the e-maiil thing, as their e-mail was already validated on the old site. It then creates the user in wordpress and the user doesn’t notice anything.
How you could do this for your friends, just make a table of all the friends, and set the same password for everyone initially, and ask them to change it. I only suggest this for very small beta sites with friends you trust, like less then 10 people.
Brad
January 11, 2009 at 6:03 pm #36106fishbowl81
ParticipantHopefully this will make sense
I have 4 directories, which I download the svn update to, and then copy them over to the live site:
/bbpresssvn
/buddypresssvn
/wordpresssvn
/privatedevsvn
By logging into the command line, I can do this
svn up
inside each of those 4 folders and it will update them to the newest trunk release. Then I run this command (or similar for buddypress)
cp -R * ../beta
and copy the files to the dev server. So far this has worked really well.
The private dev svn is where I upload my own plugins and themes I’m doing development on. This method is extremely fast as I never have to ftp any files between the internet, my laptop and back up to the web server. It does require command line access and knowledge of svn.
Hope this helps,
Brad
January 11, 2009 at 6:03 pm #36105In reply to: BuddyPress Showoff: Post your links
realfam
Memberunder construction
January 11, 2009 at 5:52 pm #36101realfam
Memberthat worked, once again you are the man. thanks.
I think the thread you closed ended up being related to WP, not specifically BP, but the people on here are more responsive thann the wordpress.org board. It looks like my background is making that line….not sure how to tweak the .css to make it work right.
January 11, 2009 at 5:41 pm #36100In reply to: Google Map Integration
gwrey
Memberjvinch – this is the code I use for the Featured Members on the homepage:
<div class="widget">
<h2 class="widgettitle"><?php _e( 'Featured Members', 'buddypress' ) ?></h2>
<?php $users = BP_Core_User::get_random_users( 2, 1 ) ?>
<?php if ( $users['users'] ) { ?>
<ul id="featured-member-list" class="item-list">
<?php foreach( $users['users'] as $user ) : ?>
<li>
<div class="item-title"><strong><?php echo bp_core_get_userlink( $user->user_id ) ?></strong></div>
<div class="item-avatar">
<a href="<?php echo bp_core_get_userlink( $user->user_id, false, true ) ?>"><?php echo bp_core_get_avatar( $user->user_id, 1 ) ?></a>
</div>
<div class="item">
<!-- div class="item-meta"><span class="activity"><?php echo bp_core_get_last_activity( get_usermeta( $user->user_id, 'last_activity' ), __('active %s ago') ) ?></span></div -->
<?php if ( function_exists( 'xprofile_get_random_profile_data' ) ) { ?>
<!-- ?php $random_data = xprofile_get_random_profile_data( $user->user_id, true ); ? -->
<div class="item-title profile-data">
<strong>About Me: </strong><?php echo BP_XProfile_ProfileData::get_value_byid( 2, $user->user_id ); ?>
</div>
<div class="item-title profile-data">
<strong>RV Type: </strong><?php echo preg_replace('/^.*?"(.*?)".*$/', '$1', BP_XProfile_ProfileData::get_value_byid( 3, $user->user_id ) ); ?>
</div>
<?php } ?>
</div>
</li>
<?php endforeach; ?>
</ul>
<?php } else { ?>
<div id="message" class="info">
<p><?php _e( 'There are no members to feature.', 'buddypress' ) ?></p>
</div>
<?php } ?>
</div>January 11, 2009 at 5:40 pm #36099In reply to: Groups – Mods and Admins
Burt Adsit
ParticipantI understand completely. What we got here is just the core of a wonderful thing. Some areas of bp are feature rich and some need to be fleshed out. It’s up to us to determine what the features should be based on how we want to use bp. Our problem now is that the docs for the features that do exist are kinda sparse. Like any open source product it’s up to us to create them.
This is really how wpmu, bbpress and buddypress are designed. The architecture is extensible and the extensions and features grow out of need. I’d much prefer this way of doing things than being stuck with something monolithic. Here’s what ya get. Take it or leave it.
January 11, 2009 at 5:14 pm #36096In reply to: Small issue on my homepage, driving me NUTS!!!!
Burt Adsit
ParticipantWhat does this have to do with bp? This is a buddypress forum.
January 11, 2009 at 5:07 pm #36092Burt Adsit
ParticipantNo, you wouldn’t have to do any of that running around. If that theme is only used on that blog and you have it turned off for all other blogs except the home blog on your site, then you just have to drop this into functions.php for that theme.
remove_action( 'wp_footer', 'bp_core_admin_bar' );
remove_action( 'wp_head', 'bp_core_add_css' );In that theme the admin bar won’t show. Ever. If you use that theme on other blogs then you’ll have to wrap those two calls in some code to detect what blog it’s running on and only make those calls on blog id 1.
You could also create a plugin that runs in /mu-plugins, use those two calls above and just detect what blog it’s running on and make the calls only for blog id 1. That might be better.
January 11, 2009 at 4:55 pm #36091In reply to: BuddyPress Showoff: Post your links
nickmu
Memberso far, it seems we’re the first band to be using BuddyPress.
Check us out at:
We’re not using the blog features on it…we’re mainly using it as a way for our fans to connect w/ us and our video posts etc. We just launched it yesterday. come check us out.
Nick
January 11, 2009 at 3:58 pm #36085In reply to: Google Map Integration
Bergsten
ParticipantThe plugin adds a Google Map into each profile with a marker where the member is. The member can manually set the location by moving the marker and saving it.
If the member hasn’t saved the position, the position of the IP-address the member last used to login is used.
You need to have the latest buddypress-member theme from trunk in order to see the map in the member profile as I’m calling add_action(‘bp_custom_profile_boxes’, ‘bp_google_maps_profile’, 2); to insert the map into the profile.
January 11, 2009 at 2:52 pm #36082realfam
Membersomething similar. I dont want to run around and have to manually put this on all other pages, and all user pages…that could be really fun with a thousand or so members. Anyway, there has to be a simple way to add or remove something just on the main page and thats it to stop it from loading. Any ideas to simplify this?
January 11, 2009 at 2:48 pm #36081Burt Adsit
ParticipantKinda something like this?: https://buddypress.org/forums/topic.php?id=540
January 11, 2009 at 12:24 pm #36075In reply to: Google Map Integration
Bergsten
ParticipantI have an early beta version of a Google Maps plugin that works with WordPress, WPMU & BuddyPress.
Go to http://www.ezbizniz.com/wordpress-plugins/google-maps and click on the “WP Google Maps – 2.0b1” link to download.
Put the wp-google-maps folder in mu-plugins, copy the bp-google-maps.php file to mu-plugins, go to wp-admin/admin.php?page=wp-google-maps/wp-google-maps.php and enter your Google Maps API key for your site.
January 11, 2009 at 11:04 am #36074In reply to: Differences between BP & MU 2.6.5 & MU 2.7
Per Søderlind
ParticipantI wouldn’t expect / demand that buddypress should work with a beta. I believe Andy et al. will after 2.7 is released.
January 11, 2009 at 7:21 am #36066In reply to: Differences between BP & MU 2.6.5 & MU 2.7
Maxaud
ParticipantAlso, noticed that the “Group Forums” section isn’t present in WPMU 2.7 but it is in 2.6.5
It says the following and has the following options:
“To enable forums for each group in a BuddyPress installation, you must first download, install, and setup bbPress and integrate it with WordPress MU.
Once you have bbPress set up correctly, enter the options below so that BuddyPress can connect.”
– bbPress URL
– bbPress username
– bbPress password
– Cache requests
– Caching enabled
– Cache timeout
January 11, 2009 at 4:41 am #36059In reply to: Installing BuddyPress causes completely blank page
dug
MemberThanks burtadsit.
In my install it looks like none of the slugs got created… I have no idea why… but it means /groups or /register of course go nowhwere
. Apache error log ain’t much use… of course it tells me those pages are 404!! Is there some way of manually creating these in the DB? It looks like a number of people are getting one or more slugs not created for some reason. My install is in the site root, so nothing to do with that. It’s on my own Clark Connect server, so shouldn’t suffer any of the shared hosting issues. I’m trawling through bp-core.php right now and sticking echo’s all over the place, I’ll report back if I find anything.
January 11, 2009 at 3:53 am #36056In reply to: Installing BuddyPress causes completely blank page
Burt Adsit
ParticipantNot sure why this thread got overlooked.
As far as I know the choice of subdirectory or subdomain as an mu blog option on install doesn’t matter. I have seen complications where people install mu in a subdirectory under the document root and then have chosen the subdirectory blog option.
I haven’t been able to pin it down but some weirdness crops up in that case. In both cases it’s been difficult to determine exactly what the problem was. They had difficulties getting their shared hosting provider to cooperate. It’s kinda tough to pin things down when getting access to error logs is like trying to get an audience with the pope.
There are no ‘subdomain’ only specific requirements.
-
AuthorSearch Results