Search Results for 'buddypress'
-
AuthorSearch Results
-
July 14, 2009 at 9:36 pm #49332
Burt Adsit
ParticipantIn 1.0.2 the support for the bbpress helper plugin was pulled out. This ticket: https://trac.buddypress.org/ticket/853 has the essentials for re-enabling the helper plugin support in 1.0.2.
I stuck the ticket’s attached code into bp-custom.php and it works from there fine. I don’t see any need to hack up a bunch of core files. This is going to be a temporary situation.
We need to still run the bbpress helper plugin and the support code in bp 1.0.2. Nothing is gonna work right otherwise.
July 14, 2009 at 8:40 pm #49330In reply to: How to Uninstall Buddypress?
developdesign
ParticipantOmgitsrfb – you said your domain was just blank then site up and running. What did you do to get it working again?
I’d also like to know if tables need to be deleted and if that will affect a re-install of BP in the future?
July 14, 2009 at 8:11 pm #49325tsalagi_red
ParticipantThe problem is, I want “Home” for the logged in user to be their personal chosen blog page, instead of the main blog. I don’t know how to do this except to call the url with a wordpress php function.
I don’t see how Buddypress is using this field. When I change it to a different url in the backend, Buddypress member links still take me to their profile. Or, is it used in some other way?
July 14, 2009 at 7:39 pm #49321In reply to: double posts in sitewide activity
Kunal17
ParticipantI just wanted to add that I am using the following plugins:
SiteWide
bppicture-album
Welcome Pack
Bp-dev core
BP-dev groups extra
Others:
Most Active Blogs
Seo for buddypress
As well as the following in the mu-plugins folder:
bp-events
bp-featured members-widget
blog_defaults
plugin-commander
typepadAntiSpam
restrictprofiles
July 14, 2009 at 6:58 pm #49316In reply to: Group invite as in XING?
3483983
InactiveCould you maybe explain to us how? Because this is a feature that I really miss in buddypress now.
July 14, 2009 at 6:38 pm #49312r-a-y
KeymasterHey Mohit,
Check out “wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php”
All the function calls are there.
July 14, 2009 at 6:25 pm #49310In reply to: Error while creating group and posting a topic
r-a-y
KeymasterTry this:
https://buddypress.org/forums/topic.php?id=1478&page=2#post-7670
It worked for me when I had a similar problem that you’re experiencing, although not identical regarding the IXR class.
However I’m using WPMU 2.7.1 and not 2.8.1.
July 14, 2009 at 6:22 pm #49309r-a-y
KeymasterA couple of considerations here.
If you use this login panel, you’ll most likely want to disable the BuddyBar. Just something you might want to think about.
Secondly, play around with that jQuery script. When you have the script actually toggling, then the next step is to implement the BP login form.
For this, you’ll want to examine the bp_login_bar() function (found in wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php – line 589 and on).
You can either call this function directly or create a copy of the function and modify it for your needs.
You’ll probably also need to style it so it works the way you want it.
Hope that helps!
July 14, 2009 at 4:56 pm #49308In reply to: BuddyBar for bbPress
Brian Neil Katz
ParticipantWoo Hoo! Thank you for everyones help : @JJJ and @Rohan
http://www.wpmeetups.com/forums/
Fully Integrated with the following:
1) 2.8.1 WPMU (latest trunk – 1867)
2) BuddyPress 1.1
3) bbPress 1.01 (latest trunk – 1361)
4) BuddyBar 1.03
5) Modification of of two core files
a) wpmu-functions.php b) capabilities.php
Thanks Again
July 14, 2009 at 4:17 pm #49306In reply to: BuddyBar for bbPress
nielowait
Participant@the wall:
I spent most of the day trying to figure out (like many others) why buddypress groups and bbpress wasn’t integrating. In the end I managed to track down that, in my instance, the xmlrpc wasn’t working for some reason. The connection seems to be closed prematurely. When I eventually tracked down the fault to where the buddybar plugin gets included, and once I deactivated it, the xmlrpcs (and thus the integration) started functioning properly.
Please excuse if this has already been addressed in this thread, it’s been a long day, so don’t have the energy to read through everything right now, but I wanted to share what I found out in case it could help anyone else.
As soon as I can, I’ll try using the bleeding edge version and see if I can’t figure out what’s happening with the particular setup I’m working with to cause this to happen. The odds are good that it might even work without any fuss using the above-mentioned version.
July 14, 2009 at 3:40 pm #49302Donnacha
ParticipantPlease do let us know how Milan, the developer, responds. GD StarRating is a pretty major plugin, it would be a great pity if it was incompatible with BuddyPress.
July 14, 2009 at 3:32 pm #49300plrk
ParticipantThe hack:
<?
// Fulhack for fixing obscure [p] bug: see
// https://buddypress.org/forums/topic/p-showing-up-in-group-forums-and-activity-with-bp-102-and-latest-phplibxml
function fulhack_for_fixing_p_bug($string) {
$string = preg_replace("#\[a href=\"([^<]+)\"\]([^<]+)\[/a\]#i", "<a href=\"\\1\" target=\"_blank\">\\2</a>", $string);
$string = str_replace("[p]", "<p>", $string);
$string = str_replace("[/p]", "</p>", $string);
$string = str_replace("[ol]", "<ol>", $string);
$string = str_replace("[/ol]", "</ol>", $string);
$string = str_replace("[ul]", "<ul>", $string);
$string = str_replace("[/ul]", "</ul>", $string);
$string = str_replace("[li]", "<li>", $string);
$string = str_replace("[/li]", "</li>", $string);
$string = str_replace("
", "<br />", $string);
return $string;
}
add_filter( 'bp_get_the_topic_post_content', 'fulhack_for_fixing_p_bug' );
?>July 14, 2009 at 3:31 pm #49299In reply to: Avatar upload from registration not working
omgitsrfb
Participantso i removed the premium avatart plugin but still can’t upload from the registration page of buddypress. can anyone please help me out with my question above. what impact would commenting out
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]have on the rest of my site? why would this be in .htaccess if it’s ok to just comment them out?
thanks
July 14, 2009 at 3:19 pm #49298In reply to: buddypress problem with bbpress: preg match error
3474163
Inactive…other than maybe a PHP memory limit error? Or maybe the comment.php file is corrupt?
Are you using deep integration by chance?
hey,
thanks for your quick answer, i don’t do anything special, the message appears at the top, when i click on the forum setup.
i downloaded the wpmu package again and inserted the comment.php in the wp.includes folder, to see if the file is corrupt, but the error message is still there…
what is a php memory limit error and how do i fix it?
what do you mean with deep integration?
i installed wpmu, than added buddypress vÃa the plugin page, than installed bbpress manually (in a wpmu subfolder called “forums”) and added some other plugins…
ah, and wpmu and bbpress share the database…
but, so far i haven’t used any special integration plugin.
greets
loligco
July 14, 2009 at 2:45 pm #49291In reply to: BuddyPress plugins and theme not loading
Jeff Sayre
ParticipantThat makes sense. I believe BP 1.0.3 will be out soon.
July 14, 2009 at 2:39 pm #49289In reply to: BuddyPress plugins and theme not loading
kipperman
ParticipantThanks,
sorry about the posting on old post.
Since I already have WPMU 2.8.1 installed I may as well stick it out and wait for the BP upgrade, I’m quite new to WP and don’t want the hassle to winding back versions.
cheers
July 14, 2009 at 2:36 pm #49286In reply to: nginx re-write rules
Jeff Sayre
ParticipantThis is not a BuddyPress issue nor a WPMU issue. It has to do with properly setting up a Nginx web server. But, your best bet is to go search the WPMU forums. If you can’t find an answer, post a new thread.
July 14, 2009 at 2:33 pm #49284In reply to: Widget Bugs
Paul Wong-Gibbs
KeymasterAndy Peatling has said he plans an interim of BuddyPress soon to improve compatibility with WPMU 2.8.1 (via twitter). If this isn’t on the bug tracker, please post it so that he is aware – thanks.
July 14, 2009 at 2:30 pm #49281In reply to: Widget Bugs
stellakreis
ParticipantI’m haveing exactly the same issue when I updated WPMU from 2.7.1 to 2.8.1.
I’ve tried to install another buddypress by using newly installed 2.8.1 and the same problem appears.
More precisery, all the text fields from welcome message to “how many xxs do you want to have” fields retains only one letter in a field.
I haven’t touched the core files of neither WPMU nor Buddypress. I’ve just put them on the server and installed/activated.
However, when activating Buddypress on 2.8.1, I’ve got an error massage saying that Buddypress could not be activated, although it IS activted in the plugin list (and working fine, except this widget issue.)
Running under PHP5.2.8 and MySQL 5.0.77.
July 14, 2009 at 2:30 pm #49280In reply to: avatars upload but cannot be cropped etc
Jeff Sayre
ParticipantFirst of all, since this post has not seen any activity for 3 months, it is better to start a new thread as most people that can help you will often ignore posts marked resovlved, preferring to spending their time focusing on threads that stll are unresolved. Please read this for more information.
July 14, 2009 at 2:28 pm #49278Jeff Sayre
ParticipantYou need to contact the developer of that 3rd-party plugin and ask them when the plan to support WPMU 2.8.1 and BP 1.0.2.
This is not a BuddyPress issue.
July 14, 2009 at 2:26 pm #49277In reply to: Online Members Widget max number
Jeff Sayre
ParticipantIt is up to each widget (plugin) developer to determine whether or not their widgets are compatible with the new widget API. In theory, WPMU 2.8.1 should offer backwards compatibility with older widgets. But, it is not always the case.
In term of BuddyPress’ widgets, I’m not sure when they will be updated. If we get sufficient number of reports of their improper functioning, then we will of course fix the issue. So, if you are having issues with the widgets that come with BP, please let us know. This post is a good example!
In general, if you have a 3rd-party widget that is not working in 2.8.1, please contact the developer directly and ask when they plan to upgrade.
July 14, 2009 at 2:25 pm #49276In reply to: New BP Chat plugin for Buddypress
Indojepang
ParticipantCoool.. can’t wait for this! great M!
July 14, 2009 at 2:16 pm #49275In reply to: BuddyBar for bbPress
argyris
ParticipantThe other programs (mu and buddypress) have indeed the correct language. Only bbpress has the problem after the deep integration.
Any ideas?
July 14, 2009 at 2:14 pm #49274In reply to: BuddyPress plugins and theme not loading
Jeff Sayre
ParticipantI’m sorry that your having issues getting BuddyPress up and running.
One request first: since this post is marked as resolved and is a month old, in general it is better to start a new thread as most people that can help you will often ignore posts marked resovlved, preferring to spending their time focusing on threads that still are unresolved. Please read this for more information.
Concerning your issue, this is a known bug that has been discussed here. Basically, BuddyPress 1.0.3, the next release coming very soon, will take care of this issue. So, in the meantime, you may need to stick with WPMU 2.7.1 and BP 1.0.2.
Also, before upgrading BuddyPress and WPMU, it is very important that you first deactivate all BuddyPress-dependent plugins. Then deactivate BuddyPress itself. Finally, it is recommended that you deactivate all other non-BP related sitewide plugins as well. Once finished upgrading WPMU, you then upgrade and reactivate BP. Then, you reactivate the other BP-dependent plugins.
-
AuthorSearch Results