Search Results for 'buddypress'
-
AuthorSearch Results
-
November 20, 2008 at 8:20 pm #33878
In reply to: I´m curious!
gogoplata
ParticipantIs there something specific you’re looking for. Most WordPress plugins and WPMU plugins will work alongside BuddyPress. Right now the focus is on getting all the basic features stable for a formal release in the next month or so, but additional plugins will definitely be developed for this system.
November 20, 2008 at 2:30 pm #33870Andy Peatling
KeymasterPlease use the trunk version of BuddyPress.
November 20, 2008 at 2:15 pm #33867In reply to: Translating BuddyPress
dudboi
ParticipantGreat! Thanks for the help. In the end I just uploaded a nontranslated english MO file to the languages folder. Though it doesn’t really make sense for me to update both the WP MU and BuddyPress languages together.
I mean I suppose it’s useful for people who actually want to do translations, but shouldn’t there be a separate function for buddypress altogether (that perhaps is linked to WP MU?)
November 20, 2008 at 11:19 am #33863In reply to: Recommended Hosting for BuddyPress site?
trcwest
Participantjust simple couple of questions… i have a shared host really cheap one with lunar pages…
I installed wpmu and realised that the subdomain function would work as i didn’t have access the Apache server and this means i cant ad the wildcard dns thingy.. so subdomains we out…
so i reinstaled using the sub directory… this worked fine..
i then tried to instal budypress with teh zip files.. as said in the readme…
with the blogs one it just gave a a parse syntax php ( or one of those php eror lines on a white page just saying something was wring on a line around 300 i forget exactely..) error that would not let me do
anything… so i deleted the blogs one and then it worked and i could ad a profile on the admin contol pannel but not on the splash page from register.. it first asked to creat a new blog then the profile so that didnt seem right..
questions.. does budy press work on sub directories and why was the blogs plugin not working..
i am trying to create a social site for spots or locations in kenya…
cheers..
November 20, 2008 at 10:53 am #33862In reply to: How do you put login/sign-up on admin bar
Deadpan110
MemberI have submitted a patch:
https://trac.buddypress.org/ticket/174
adds Log In and Sign Up (only if enabled registrations)
*adds* …there is also some info there for creating your own custom admin bar.
November 20, 2008 at 10:35 am #33861In reply to: Existing Theme, Buddypress Features
gpo1
ParticipantI want the login/sign-up taskbar like in the bp demo site, in my custome theme.
How is it done?
November 20, 2008 at 9:19 am #33860In reply to: Translating BuddyPress
Dreamcolor
ParticipantStep 1: Upload a MU language file to active the language select menu in “Site Admin” – “Options” page. This will make you can select sitewide default language.
Step 2: Upload a BP language file. And its language will been changed with MU at same time.
For example: I uploaded a file named “zh_CN.mo” for MU in “wp-content/languages/”. And now, In “Site Admin” – “Options” it will display a languages select menu. And in “Setting” – “General” will too. Now,I can change sitewide language or my own site language.
At this time, if I want to change BP’s language, I just need to upload a file “buddypress-zh_CN.mo” file in “wp-content/mu-plugins/bp-languages”.
You can test on my site, And I already translated BP and MU to chinese.
PS: This is just a test site. So DO NOT post any importent things.
November 20, 2008 at 9:18 am #33859In reply to: BuddyPress and Site wide tags plugin
kunefr
MemberHi thezohan10,
Thanks for your reply.
You solution is interresting. Did you modify the plugin or did you create your own ?
In any case, can you share your code ?
Thanks!
November 20, 2008 at 5:47 am #33855In reply to: Error with the “Recent Blog Posts” widget?
thezohan10
MemberSorry to sleepy, the post above was for this topic:
https://buddypress.org/forums/topic.php?id=76
Cheers,
Z
November 20, 2008 at 5:45 am #33854In reply to: BuddyPress and Site wide tags plugin
thezohan10
MemberHi to all, i will tell you my little experience with the subject.
First of all: How does the global tags blog work? Simple, when someone makes a post, WPMU triggers an event. Basically there is a plugin that is hooked to that event, and when the post is made, it copies the post to a TAG blog (typically “invisible” and with a modified template, i will try not to extend here). But it dupplicates the post in the tag blog, and when you wanna show a cool plugin with al the site tags, you add the standard WP tag function instantiating that blog.
THE PROBLEM WITH BUDDYPRESS:
Inspite that in the PHP code of buddypress tries to evaluate, reading the options of WPMU if the POST comes from the TAG BLOG, it fails, cause there is an environment problem there. $BP and $WP* does not bring the correct actual blog id from the Blog where the post was made (Tag blog) so it thinks it´s a new entry, so boom, it keeps on publishing, POST – HOOK – POST – HOOK etc… until the buffer makes a little BOOM!. And it stops.
What i did (i figured this problem the first time i installed buddypress) and maybe it´s not the best answer to your problem, is to use my own post indexer (i was using that plugin before for other reasons) so i took the HOOK of SAVED or PUBLISH i don´t remember and i am triggering the BP post record function directly from my plugin.
But the important thing is that, the BP code is perfect at that point, it tries to evaluate if the blog is the TAGS BLOG, but there´s a problem with the environment $BP or $WP**** at that point, so the BLOG_ID is messed.
Hope it helps Andy.
Z.
November 20, 2008 at 5:42 am #33853In reply to: Error with the “Recent Blog Posts” widget?
thezohan10
MemberHi to all, i will tell you my little experience with the subject.
First of all: How does the global tags blog work? Simple, when someone makes a post, WPMU triggers an event. Basically there is a plugin that is hooked to that event, and when the post is made, it copies the post to a TAG blog (typically “invisible” and with a modified template, i will try not to extend here). But it dupplicates the post in the tag blog, and when you wanna show a cool plugin with al the site tags, you add the standard WP tag function instantiating that blog.
THE PROBLEM WITH BUDDYPRESS:
Inspite that in the PHP code of buddypress tries to evaluate, reading the options of WPMU if the POST comes from the TAG BLOG, it fails, cause there is an environment problem there. $BP and $WP* does not bring the correct actual blog id from the Blog where the post was made (Tag blog) so it thinks it´s a new entry, so boom, it keeps on publishing, POST – HOOK – POST – HOOK etc… until the buffer makes a little BOOM!. And it stops.
What i did (i figured this problem the first time i installed buddypress) and maybe it´s not the best answer to your problem, is to use my own post indexer (i was using that plugin before for other reasons) so i took the HOOK of SAVED or PUBLISH i don´t remember and i am triggering the BP post record function directly from my plugin.
But the important thing is that, the BP code is perfect at that point, it tries to evaluate if the blog is the TAGS BLOG, but there´s a problem with the environment $BP or $WP**** at that point, so the BLOG_ID is messed.
Hope it helps Andy.
Z.
November 20, 2008 at 2:23 am #33850In reply to: Translating BuddyPress
dudboi
ParticipantOops, that’s what I meant. Mistyped sorry.
Still nada: http://donicethings.org/beta/wp-content/mu-plugins/bp-languages/buddypress-en_US.mo
At http://donicethings.org/beta, groups is supposed to translated to “projects”.
November 19, 2008 at 11:59 pm #33849In reply to: Members Page or theme not working??
shawn77
MemberI figured it out:) I did not take the buddypress-member them out of the sub folder. Also just so everyone knows I have buddpress running from a sub directory and not the root with no problems so far after figuring this out. I am also using a modified theme from Woo themes with it.
November 19, 2008 at 8:47 pm #33848gogoplata
ParticipantThe basics of what I did was edit bp-xprofile.php and removed these lines:
$sql[] = “INSERT INTO “. $bp . ” (
id, group_id, parent_id, type, name, description, is_required, field_order, option_order, order_by, is_public, can_delete
) VALUES (
1, 1, 0, ‘textbox’, ‘” . __( ‘Public Display Name’, ‘buddypress’) . “‘, ”, 1, 1, 0, ”, 1, 0
);”;
$sql[] = “INSERT INTO “. $bp . ” (
id, group_id, parent_id, type, name, description, is_required, field_order, option_order, order_by, is_public, can_delete
) VALUES (
2, 1, 0, ‘textbox’, ‘” . __( ‘Last Name’, ‘buddypress’) . “‘, ”, 1, 2, 0, ”, 1, 0
);”;
Then I went into my database and deleted those fields. Once those are gone BP defaults to using the username.
November 19, 2008 at 8:35 pm #33846In reply to: Error with the “Recent Blog Posts” widget?
CriticalNed
ParticipantI think this may have been fixed today??
https://trac.buddypress.org/changeset/557
Changeset 557
View differences
Show lines around each change
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
11/19/08 16:03:44 (5 hours ago)
Author:
apeatling
Message:
Added missing switch_to_blog() call which was causing issues with using the recent blog posts widget.
November 19, 2008 at 8:29 pm #33844In reply to: Existing Theme, Buddypress Features
gogoplata
ParticipantGlad to hear you resolved everything. I too had no problem adding the BuddyPress features to another theme.
November 19, 2008 at 8:16 pm #33843In reply to: Members Page or theme not working??
gogoplata
ParticipantYou may need to install WPMU and BuddyPress in the root, not in a directory.
November 19, 2008 at 4:07 pm #33839In reply to: Existing Theme, Buddypress Features
Scotm
ParticipantJust a quick note on my two issues above…both resolved after some experimentation.
I’m using a landing page theme at fantasyhockeynetwork.com for now, but underneath I have a Revolution Magazine theme working quite nicely with Buddypress. Widgets and admin bar fit nicely into the existing format.
Thx
November 19, 2008 at 3:50 pm #33838In reply to: Member’s Page Issue When Logged In
Scotm
ParticipantFound the problem…it was a plugin conflict.
For others using the Theme Switcher plugin, your links to Buddypress (or any actual post links) won’t work while the theme switcher is active.
Thx
November 19, 2008 at 3:19 pm #33837In reply to: security on bp
Trent Adams
ParticipantAndy mentioned that it will come after the initial major release of Buddypress, but you can keep up by following the timeline.
https://trac.buddypress.org/wiki/roadmap
Trent
November 19, 2008 at 2:46 pm #33836In reply to: Existing Theme, Buddypress Features
Burt Adsit
Participant@gpo1 using a custom theme works just fine now. Your bp admin bar shows up even using that alternate theme. Give it a try.
November 19, 2008 at 10:07 am #33832In reply to: Existing Theme, Buddypress Features
gpo1
Participantscotm, I like your site are you using the modify buddypress home theme ?
Because I want to use a custom theme,but I want the login task bar & sign-up features on the custome theme.
So, How can I do this on a custom theme?
November 19, 2008 at 9:32 am #33831In reply to: Recommended Hosting for BuddyPress site?
gpo1
ParticipantHave you checked out http://www.omnis.com/
November 19, 2008 at 7:32 am #33829In reply to: Translating BuddyPress
Dreamcolor
ParticipantNot wp-content/plugins/bp-languages
It should uploaded in wp-content/mu-plugins/bp-languages
PS: All the BP plugins should installed in “mu-plugins” not “plugins”
November 19, 2008 at 6:54 am #33828In reply to: BuddyPress and Site wide tags plugin
kunefr
MemberI hope that a fix will be find … I agree that this kind of functionality is really important.
I know exactly how i want to use it but we have to be patient …
I will follow this thread !!
-
AuthorSearch Results