Search Results for 'buddypress'
-
AuthorSearch Results
-
October 13, 2009 at 6:13 am #54422
In reply to: Got banned after asking a simple question?
intrepidhosts
ParticipantFrom what I see in that original forum topic you were not put on ignore but topic was closed and other users were directed to contact you directly via your email account instead of posting responses.
Also the forums have a bug that causes a problem when trying to post and you have to log out and log back in. And unless your paying close attention you may think you have posted but infact the page reloads and says you have to be logged in to post. I know when I first tried posting the first 3 times here I thought I had left posts but came back next day and posts were not there. Until I saw the HELP I CANT POST topic https://buddypress.org/forums/topic/help-i-cant-post-readme.
October 13, 2009 at 6:10 am #54421In reply to: Forums not working
Paul Wong-Gibbs
KeymasterBecause semantically BuddyPress views the wire and forum components as part of groups (and other components); they aren’t stand alone.
October 13, 2009 at 6:09 am #54420In reply to: How to turn Confirm Email Off?
Paul Wong-Gibbs
KeymasterOctober 13, 2009 at 6:05 am #54417In reply to: Can buddypress activation emails be turned off?
Paul Wong-Gibbs
KeymasterTHis is a WPMU thing. I believe this behaviour has changed in BP 1.1.1. I strongly suggest you upgrade your install regardless.
October 13, 2009 at 1:46 am #54408In reply to: reCAPTCHA for registration
Mike Challis
ParticipantWhy did you uninstall SI captcha?
SI CAPTCHA Anti-Spam works with WordPress 2.6+, WPMU, and BuddyPress
https://wordpress.org/extend/plugins/si-captcha-for-wordpress/
WP-reCAPTCHA is not up to date for BuddyPress 1.1, that is why it does not work.
October 12, 2009 at 11:48 pm #54404In reply to: Dashboard won't load after upgrade
takuya
ParticipantDo we have bp-config here? Being an active buddypress user, I’ve never seen it, nor faced any need to editing such files manually to use buddypress.
October 12, 2009 at 9:45 pm #54398In reply to: 1.1.x Compatible Themes
Lisa Sabin-Wilson
ParticipantMy editor says .. “Lisa, just create a bunch to list in the book”.. uh, heh.

I think telling the readers to keep their eye keen on the /extend/themes directory on the BuddyPress site is a good way to go, since there are only two compatible themes listed so far, doesn’t really warrant an entire chapter really.
Thanks for the feedback!
October 12, 2009 at 7:49 pm #54393In reply to: Plugin: PmWiki in Buddypress.
martinhason
ParticipantHi Tim! Much time have passed since the last post and I have an one question. Will pmwiki plugin be available for download? I would like to use it. If the plugin wasn’t made public, I will have to write it again.
October 12, 2009 at 5:03 pm #54391In reply to: 1.1.x Compatible Themes
Paul Wong-Gibbs
KeymasterI think both the above are on the money. I’d suggest making a link to (does that even make sense in the context of a book?!) https://buddypress.org/extend/themes/
October 12, 2009 at 2:58 pm #54390In reply to: wp-sigup.php and /register
John James Jacoby
KeymasterThere is no core fix for this yet.
This problem will continue to exist until a newer version of WPMU adds an additional filter to the sign-up location.
https://buddypress.org/forums/topic/wp-sigupphp-and-register#post-25253
October 12, 2009 at 2:53 pm #54389In reply to: How to display specific user's avatar?
John James Jacoby
KeymasterI’ve done something like this in the past… It all depends on which file you’re trying to do this in, and in which loop so you know what data you have available to you…
In a post loop, you can use the global $authordata to get the authors ID.
// Code borrowed from bp_adminbar_authors_menu()
function bp_author_link() {
global $authordata;
// Get author's data BuddyPress style
$author = new BP_Core_User( $authordata->ID );
echo '<a href="' . $author->user_url . '">';
echo $author->avatar_mini;
echo ' ' . $author->fullname;
echo '<span class="activity">' . $author->last_active . '</span>';
echo '</a>';
}This way it’s tucked in a function that can be re-used in various other pages and ways.
October 12, 2009 at 2:46 pm #54388In reply to: wp-sigup.php and /register
outolumo
ParticipantI have the same problem. It seems to be a problem with the default theme:
1) Buddypress deactivated, using buddypress theme – issue
2) Buddypress activated, usibg P2 theme – no issue.
October 12, 2009 at 2:23 pm #54387Mariusooms
ParticipantIt will take you 3 months to do in Drupal what you could in 3 weeks in WPMU/BuddyPress. I’ve been there and am never looking back. If I do look back at my Drupal project I get shivers and I used to develop for Drupal, namely was part in creating the friendlist plugin (amongst others) if you are familiar with Drupal.
Forget about Joomla if you are worried about security holes, they are the worst of the pack.
October 12, 2009 at 2:06 pm #54386zageek
ParticipantThis is an interesting topic, one that concerns me too because I have been looking at the various options out there. I must say that BP is still somewhat in its infancy, I have been waiting for another project to open up their codebase namely Anahita Social engine, but maybe its me I just don’t like it when things get built on top of eachother and that project appears to be built on top of Joomla. BP is also built on WPMU and I am still trying to see if that will be a good or bad thing.
What concerns me is when things get built on top of eachother that it opens up security holes. WordPress itself has had its fair share of vulnerabilities but has proven to be a good platform so I having something built on top of that is something I am ok to live with.
Something I have been looking at is Community Engine which a Ruby on Rails (ROR) based community engine as the name says. Anyone got any experience with that?
October 12, 2009 at 1:38 pm #54383In reply to: How to add custom $usermeta to registration
Anonymous User 96400
InactiveDid some checking and it appears that the above code I posted doesn’t work as advertised.
All the error messages are picked up correctly, but it seems that the additional $_POST values from register.php aren’t picked up, so it always displays an error message and a user basically can’t sign up.
Any ideas are welcome, cause I don’t really have a clue
October 12, 2009 at 11:51 am #54381In reply to: Editing the Site Title in BuddyPress
Sven Lehnert
ParticipantI will update the plugin for 1.1.1
The plugin was made for a early beta of buddypress and is not programmed properly.
I’s a quick and dirty try.
I just started to rebuild my template for the new theme architecture.
Next step will be to rewrite the Seo for Buddypress Plugin and extend it properly.
October 12, 2009 at 11:44 am #54380In reply to: wp-sigup.php and /register
croif
ParticipantI have the same problem. Blank page on wp-signup.php.
The code end on:
<script type="text/javascript">var ajaxurl = "http://myblog.ro/wp-signup.php";</script>I get a lot of traffic on inexistent blogs. Like when somone accesses http://sdfdsfsdf.myblog.ro gets redirected to http://myblog.ro/wp-signup.php?new=sdfdsfsdf but that is just a blank page now.
I have tried to apply the patch from trac to wp-login.php and it is the same blank page.
I use WPMU 2.8.4a and BuddyPress 1.1.1.
Please help if you have a solution to this. Thanks a lot.
October 12, 2009 at 11:39 am #54379In reply to: Editing the Site Title in BuddyPress
abcaa6
ParticipantThere’s actually a plug-in called ‘SEO for BuddyPress’, which allows admins to edit titles, meta tags descriptions, but it doesn’t work with the latest BuddyPress Install.
October 12, 2009 at 11:35 am #54378In reply to: Editing the Site Title in BuddyPress
abcaa6
ParticipantI know the bp_page_title function. But my question is ‘How do I script that function so that in the Index page, they display some title and for other pages, it displays the page name as title’
October 12, 2009 at 9:27 am #54374In reply to: blog page show summery
takuya
Participant1. You should not post wpmu questions to a forum dedicated to buddypress.
2. You should read wordpress documents, as this is a very basic question.
3. Google it.
October 12, 2009 at 9:00 am #54371In reply to: BuddyPress i18n Topics
takuya
ParticipantThanks DJPaul for creating the ticket.
Similar to activity feed’s excerpt not working under i18n environment, messages show full content rather than excerpt when viewed by list. When I receive English messages on buddypress.org, excerpt is displayed, but on my Japanese install, full message is displayed.
New ticket made for this:
https://trac.buddypress.org/ticket/1222
Any other uses, like Russian, Chinese?
October 12, 2009 at 8:43 am #54370In reply to: 1.1.x Compatible Themes
takuya
ParticipantSo far 1.1 free theme is only one which you can download directly from this site, other than original buddypress theme.
There’re paid themes, but I believe they aren’t updated to 1.1
October 12, 2009 at 8:27 am #54369In reply to: 1.1.x Compatible Themes
zageek
ParticipantWell done on the book. It sounds really cool. There aren’t enough Buddypress themes out there. I am working on a custom parent theme, would like to share it once its done but its nowhere near ready for release.
Why don’t you set up a website and put that address in the book and then link to or keep copies of the theme on your site. That way if sites go offline you won’t end up with dead links in your published work.
October 12, 2009 at 5:10 am #54365In reply to: Forums not working
Tore
ParticipantHave you taken the step in the Buddypress adminbar [general settings] [component setup] [forums setup]. The last one, and created the forums?
October 12, 2009 at 4:57 am #54364reidwalley
ParticipantThe Author Homepage & Plugin Homepage links on the BuddyPress Plugins page for this plugin have been going to “Not Found” pages for a few days now:
http://example.org/my/awesome/bp/component
http://example.org/some/cool/developer
Not sure what it means.
-
AuthorSearch Results