Search Results for 'buddypress'
-
AuthorSearch Results
-
May 26, 2009 at 5:58 am #46073
In reply to: New BP Chat plugin for Buddypress
Mark
ParticipantThe chat interface has been revamped to better support chat with many different people at the same time.
So far it works in Firefox, IE 7, and Chrome. Not sure about Opera or Safari. IE 6 is in development, although I still say that using IE 6 ought to be illegal….
If you find bugs, or use Opera or Safari and test the chat please report whether there are problems.
http://simplercomputing.net/bp
We’ll be adding audible alerts when a new chat message arrives and some other cool features soon.
May 26, 2009 at 4:28 am #46072Burt Adsit
ParticipantYa, John’s right. That’s the symptoms of just putting bpmember in /wp-content instead of /wp-content/bp-themes/bpmember during an upgrade. You then have to vist BuddyPress > General Settings and say Save.
It’s due to the directory ‘bug’ in wpmu 2.7.1.
May 26, 2009 at 2:33 am #46070In reply to: Localisation, per user
John James Jacoby
KeymasterNo, you only need one installation of WPMU/BuddyPress to have a multi-language website.
When you install additional PO’s and MO’s in your wp-includes\languages folder, magically in your Site Admin and Blog Admin settings will be language selection options, to determine the default language of both the site and the blog. The mu_locale function will take control of it and over-ride the WPLANG settings as necessary.
There is no user language settings as of yet, but I’m working on an implementation of qTranslate to allow for this. This won’t work until BuddyPress 1.0.1 as there’s a few specific things that need to be altered for everything to work in the order they need to.
May 26, 2009 at 2:05 am #46066John James Jacoby
KeymasterGood job Burt!
May 26, 2009 at 2:01 am #46065John James Jacoby
KeymasterDo you have a theme named “bpmember” in your wp-contents\bp-themes\ directory?
If so, have you navigated to your BuddyPress settings and activated that theme as your members theme?
May 26, 2009 at 1:59 am #46064In reply to: Group > Members Slug
John James Jacoby
KeymasterRight now the slug changing isn’t working 100% correctly. A bug-fixed, security swept, attribute_escaped BuddyPress 1.0.1 is on the assembly line as we speak.
May 26, 2009 at 1:45 am #46063In reply to: problem with hoard hunter plugin
John James Jacoby
KeymasterCheck which plugins are activated on that specific blog and turn them off one by one. Sounds like something is interfering with something else. More than likely some kind of date re-writing or hi-jacking situation.
Otherwise, there’s only a few places this function gets calls inside BuddyPress, so it would take some tracing back of those functions to see what’s conflicting or what’s causing it to happen.
\buddypress\bp-core.php (5 hits)
Line 275: return apply_filters( 'bp_activity_insert_time_since', @sprintf( $content, @sprintf( __( ' %s ago', 'buddypress' ), bp_core_time_since( strtotime( $date ) ) ) ) );
Line 896: function bp_core_time_since( $older_date, $newer_date = false ) {
Line 998: $last_active = bp_core_time_since( strtotime( $last_activity_date ) );
Line 1000: $last_active = bp_core_time_since( $last_activity_date );
\buddypress\bp-friends\bp-friends-templatetags.php (1 hits)
Line 251: return apply_filters( 'bp_friend_time_since_requested', sprintf( __( 'requested %s ago', 'buddypress' ), bp_core_time_since( strtotime( $friends_template->friendship->date_created ) ) ) );
\buddypress\bp-groups\bp-groups-templatetags.php (2 hits)
Line 752: return apply_filters( 'bp_get_group_last_active', bp_core_time_since( $last_active ) );
Line 2346: echo apply_filters( 'bp_group_request_time_since_requested', sprintf( __( 'requested %s ago', 'buddypress' ), bp_core_time_since( strtotime( $requests_template->request->date_modified ) ) ) );
\buddypress\bp-xprofile\bp-xprofile-templatetags.php (1 hits)
Line 368: return apply_filters( 'bp_get_profile_last_updated', sprintf( __('Profile updated %s ago', 'buddypress'), bp_core_time_since( strtotime( $last_updated ) ) ) );May 26, 2009 at 1:28 am #46061In reply to: bbpress integration
John James Jacoby
KeymasterSo far from what I can see of the second release candidate of bbPress 1.0, it looks like integration has gotten better for BuddyPress and WordPress MU, but don’t expect a simple turn-key installation. There are simply too many configurations to not have to dip into the wp-config.php or bb-config.php files a little bit.
Integration of bbPress1.0 RC2 is essentially the same as the Alpha’s, other than there being a spot to enter the ID of the main WPMU blog. There’s also an extra variable to add to the config files to force the integration method, but I suspect that to be only temporary.
Once everything becomes 1.0, things will probably make more sense and come more into alignment.
May 26, 2009 at 1:25 am #46060In reply to: buddypress.org site
John James Jacoby
KeymasterYou can edit the tags from viewing the post itself. Anyone can add or remove tags at any point.
If you’re talking about the link on the front page to take you to the BuddyPress Trac, that should be working just fine. Where is this link that’s 404’ing?
May 25, 2009 at 10:36 pm #46057Burt Adsit
ParticipantOh. Before anyone publicly complains, no, there isn’t any pagination included in alpha 1’s directories. I’m totally ignoring it on purpose. All the code is there ready to take advantage of it but I purposely didn’t implement it.
bpc uses a mechanism called Modifed Pre-Order Tree Traversal (MPTT) that was specifically designed to track tree like structures in SQL tables. I need to find out if that part of the core is working properly. I had no intention of introducing another complexity down at the SQL level right now. As far as I can tell the MPTT implementation is stable.
I swore I wasn’t gonna document this for programmers yet but I guess it wouldn’t hurt to talk about MPTT now.
When you look at the properties for a node, in the class OCI_Node, you’ll notice two vars $this->lft and $this->rgt. These are MPTT specfic vars that represent the parent/child relationships of all nodes in the tree. . See these for info about MPTT:
http://www.sitepoint.com/article/hierarchical-data-database/
http://dev.mysql.com/tech-resources/articles/hierarchical-data.html
http://www.dbmsmag.com/9604d06.html
A simple node insert operation in the tree has a good chance of changing 50% of the lft/rgt values in the entire tree.
Any sql operation that changes these values must:
1) lock the table
2) get the node and it’s valid lft/rgt values
3) do the operation
4) unlock the tree
The only reliable property for a node in the tree is the $this->id which is the record id in the table.
The boys and girls at wp are investigating MPTT right now for a future version of wp. I can’t wait around until they get to that so I’ve implemented this in bpc. It’s a natural for this kind of project and has many advantages.
May 25, 2009 at 9:34 pm #46055Burt Adsit
ParticipantHa! Yep. Andy is right. Delete that line and things should work alot better. Oops. Fixing the download. Thanks Andy.
3000+ lines of code and one var_dump() included for free.
May 25, 2009 at 9:29 pm #46054In reply to: Announcing: Events component
Sven Lehnert
ParticipantHi Erwin Gerrits,
bp-events is great. I’m playing around with it, having a lot of fun!
Now I have one problem with the wire.
May you can help me to fix it. I use customizable slugs, and I think this breaks the wire in your plugin.
This ticket has a batch for buddypress.
May 25, 2009 at 7:00 pm #46051Donnacha
ParticipantYes, I believe bbPress is already improving quite rapidly; while it has nowhere near as many features as vB, my instinct is that the combo of BuddyPress + bbPress is actually more useful overall, especially when you consider how the forums are spread out among groups, giving a more intuitive and “lighter” feel.
bbPress 1.0 should be released with the next week or so (it is currently on RC1) and it’s development has been given a boost by the resources Automattic are pouring into their new commercial service, TalkPress.com.
Upcoming bbPress improvements include easier integration with WP and MU, which will be a huge relief. If the massive WordPress community starts to swing behind bbPress, we can expect some pretty good plugins to emerge, whereas I believe vB’s community of voluntary plugin developers has already started to hemorrhage. Certainly, the fact that they are closing all threads mentioning BuddyPress suggests they feel threatened by it.
May 25, 2009 at 6:23 pm #46047In reply to: Localisation, per user
abcde666
Participantdo I need 2 installations of BuddyPress in order to run a website in 2 languages ?
Please let me know.
Many thanks,
Erich
May 25, 2009 at 5:59 pm #46046Greg
ParticipantJeff, thanks for the extensive efforts to repro on your side. I have answers to your first two questions:
1. No other plugins
2. Default BuddyPress Home Theme
I will investigate the server logs.
May 25, 2009 at 5:40 pm #46045Andy Peatling
Keymasteroci-contents.php line 292 there is var_dump() call that is causing the problems above.
May 25, 2009 at 4:58 pm #46042Burt Adsit
ParticipantEverybody posting problems please state your bp version, wpmu version. Maybe a link to the site with the issue would help. This is successfully running on the demo site http://ourcommoninterest.org/ using WPMU 2.7.1, BP 1.0 and also under Windows.
May 25, 2009 at 4:53 pm #46041Jeff Sayre
ParticipantRebootnow-
Since I had only one radio button field, which was located in my first field group, I did the following:
- I added a new radio button field to my second field group and tested. No issue.
- Then, thinking it could be an issue if two or more radio button field sets were in the same field group, I added a second radio button field set to the same group. No issue between all three radio button field sets.
- Then I created a new field group and added a fourth radio button field set. No issue. Each change I made showed up and remained properly set, whether just changing a single radio button field, or changing all four radio button fields.
- Finally, thinking maybe this could be an issue only within the first field group, I added a second radio button field to the first field group. I now had 5 radio button field sets. No issue. All five worked as expected. No issues within filed groups or between field groups.
- Since the first radio button field set in the first field group was set to “Required”, I reset it to “Not Required” to see if that would make a difference. No issue.
- I then set both radio button field sets in the first field group to “Required”. No issue.
So, I have tried numerous combinations and cannot recreate your problem.
A few questions:
- Do you have any plugins other than BuddyPress installed and activated? If so, try disabling .
- Are you using the standard BuddyPress themes or customized themes? If customized themes, try switching to the default BP themes.
- Are there any errors in your server’s log files?
May 25, 2009 at 4:45 pm #46040Roy McKenzie
ParticipantReceived this error when posting a new tag to a group as admin:
<br />
string(60) "http://modestobuzz.com/groups/modesto-area-disk-golfers/edit"<br />
Warning: Cannot modify header information - headers already sent by (output started at /home/chedstone/webapps/modbuzz/wp-content/plugins/oci-contents/oci-contents.php:292) in /home/chedstone/webapps/modbuzz/wp-includes/pluggable.php on line 856<br />Blank page with the above text on it. The tag was still added though.
Running BP 1.0 and WPMU 2.7.1
May 25, 2009 at 3:57 pm #46035In reply to: blank screen after upgrading to buddypress 1.0
Christopher
ParticipantI’m not getting any error. Just a blank screen. Very frustrating…
May 25, 2009 at 3:41 pm #46034In reply to: What files need to translate?
tadziz
Participantin bp-languages dir are file named buddypress.pot is it everything ok with it ? becouse it show me that it is microsoft power point template ? i feel that i dont understand something about it
May 25, 2009 at 3:32 pm #46033In reply to: Widgets only added to left-column
Jeff Sayre
ParticipantPinggu-
Starting a new support request within a thread marked resolved will not get you anywhere. It will be ignored. Please read this thread: https://buddypress.org/forums/topic.php?id=2543
May 25, 2009 at 3:30 pm #46032In reply to: Group and forum problems…
2731640
InactiveI don’t know exactly what to look for in header… but (I obviously like the word but here
) noticed when comparing testbp.org’s html source and mine that in header I have different code on line 11:Mine is:
<link rel='stylesheet' href='http://domain.com/wp-content/plugins/buddypress/bp-blogs/css/widget-blogs.css?ver=2.7.1' type='text/css' media='' />and testbp.org’s is:
<link rel='stylesheet' href='http://testbp.org/wp-content/plugins/buddypress/bp-activity/css/widget-activity.css?ver=2.7.1' type='text/css' media='' />Meaning that instead of bp-activity I have bp-blogs…
Everything else seems to be similar. Is this a problem and why is my code different from tesbp.org’s?? (I’m using BP’s default theme now, before fixing my own theme.) I have changed nothing in BP’s default theme.
May 25, 2009 at 3:18 pm #46031In reply to: Widget Bugs
Jeff Sayre
ParticipantSubster-
First, you should not edit the core files–this includes the widget files. Instead, make copies of the widget files that you want to modify, give them a unique name, and then work on those copies. You can then install and activate your new widget in WPMU’s backend like any other widget.
Second, before modifying any widget, you should remove it from any BuddyPress theme column in which it is installed. This is just a wise precaution.
Third, I’d suggest copying back to their original locations, unaltered versions of the widget files that you modified.
Making a backup copy of your DB is always a good idea before any modification that can impact the data. But, as far as what you’ve done with your actual data in you DB, I cannot advise.
May 25, 2009 at 2:51 pm #46028In reply to: buddypress upload avatars 404
Jeff Sayre
ParticipantThese two error messages indicate that you do not have a a complete install of the standard member theme.
You state that you are using the standard BuddyPress themes and it seems like you are able to access the member theme to get to the links to change the avatars, but the files to alow you to do so are missing.
For the change-avatar.php file, look in /wp-contents/bp-themes/bpmember/profile.
For the group-avatar.php file, look in /wp-contents/bp-themes/bpmember/groups/admin.
If you do not see either of the files in those locations, then your installation is flawed. Reinstall the member theme, reselect it in WPMU admin, and try again.
-
AuthorSearch Results