Search Results for 'buddypress'
-
AuthorSearch Results
-
October 21, 2009 at 2:50 pm #54934
In reply to: Do's and Dont's of Server Setups
Jeff Sayre
ParticipantSince you are specifically asking about server setup, I’ll assume that you are either talking about a dedicated server that you’ll be leasing from a hosting provider, or a box that you will be setting up from scratch at your home or office.
Unfortunately, there are just too many variables to give a patent answer to that question. But here is a BP thread that might shed some light:
https://buddypress.org/forums/topic/buddypress-and-shared-hosting
For everyone else wondering what the bare minimum setup they need in order to have a healthy working relationship with WPMU + BP, I always provide this caveat: don’t expect to get great, or even decent, performance from a a shared hosting account. It just won’t happen. Of course there are some that claim to have several hundred active users working without issue on a shared account. That could be the case. However, in my opinion, a shared hosting setup is out of the question for a really robust, business-oriented site.
There are many, many threads over at the WPMU forums on hosting providers, server requirements, etcetera. That is probably the best place to seek advice on such matters.
October 21, 2009 at 1:55 pm #54931In reply to: Your currently active theme is not BP enabled.
ex1234
MemberSame thing here. Downloaded latest WPM (version 2.8.4a) and installed. Next up I installed BP. Followed the instructions here: https://codex.buddypress.org/getting-started/setting-up-a-new-installation/ to the letter, but now have the following showing under Buddy Press->General Settings:
Your currently active theme is not BuddyPress enabled.
Visit https://buddypress.org/extend/themes/ to browse themes that include support for BuddyPress features.
Regs.
October 21, 2009 at 1:09 pm #54929In reply to: Question about theme for forums directory, 1.1.
Sven Lehnert
ParticipantI don’t know, but for me it looks like this could be the same error I have with the forum directory.
I posted my question hire, but no replay till now.
October 21, 2009 at 1:04 pm #54928In reply to: buddyPress 1.3
Paul Wong-Gibbs
KeymasterThis is not official but expect to see BP 1.2 by early January.
October 21, 2009 at 12:38 pm #54926In reply to: How will bbPress updates work in BP 1.1+?
tcesco
ParticipantHello,
I have WPMU 2.8.4.a en Buddypress 1.1.1 I try to use the Allow Images plugin (no admin page) (https://bbpress.org/plugins/topic/allow-images/). I made a folder my-plugins (under wp-content/plugins/buddypress/bp-forums/bbpress) and placed the file allow-images.php in this folder, with no result. Is there a way to activate this plugin?
Moving the bbPress dir to mu-plugins seems me tricky? What if there is a new Buddypress release?
Thanks for your help!
October 21, 2009 at 7:51 am #54917In reply to: 'empty' group members
Paul Wong-Gibbs
KeymasterIf you make a new group and join user(s) into it, does this problem reoccur? If it does, try to deactivate all plugins other than BuddyPress and make a new group and try again. If it doesn’t reoccur, then it’s a conflict with a plugin.
I have read recently of problems with feedwordpress + BuddyPress, so there’s an incompatibility somewhere (if indeed feedwordpress works with WPMU).
I’m inclined to thing this is a problem from the Groupblogs plugin, but let me know what happens when you test the above.
October 21, 2009 at 7:35 am #54915Paul Wong-Gibbs
KeymasterIt needs to be loaded before the bp-core.php file is. AFAIK that is either wp-config.php, /plugins/bp-custom.php and I suppose a plugin that loads before BuddyPress.
October 21, 2009 at 2:29 am #54912In reply to: Custom Theming Questions
Anonymous User 96400
InactiveMost of the do_actions you find within the default theme don’t have any actions hooked to them. I guess they are mostly there for plugins and for child themes.
Yep, any template file you copy from the parent theme to the child theme overrides the one in the parent theme. With all these actions, though, you won’t need to do that much. Say you want to add a terms of service checkbox to your register page. So, rather than copying registration/register.php to your child theme and adding the checkbox manually, for example, you could just write a function in your child theme functions.php that hooks into a do_action call at the end of the form and adds a terms of service checkbox for you.
Makes it really easy updating the parent theme.
To find out what an action does, if anything, just copy the name of the action and do a search with it in the buddypress plugin folder. That should list you all functions that are hooked to that action (add_action).
October 21, 2009 at 2:07 am #54911In reply to: Custom Theming Questions
madyogi
ParticipantSecondarily, regarding the actions in BuddyPress, what are the effects of leaving out an action that is found in the default theme? Say, for example, leaving out:
<?php do_action( 'bp_before_search_login_bar' ) ?>and then
<?php do_action( 'bp_after_search_login_bar' ) ?>Finally is there some reliable documentation detailing what these actions actually do within the theme/template/plugin?
Thanks again!
October 21, 2009 at 12:03 am #54907In reply to: Group blogs Dashboard link?
Mariusooms
ParticipantI answered this in another post, https://buddypress.org/forums/topic/new-blog-theme-available-for-the-groupblog-plugin, however that addresses only the dashboard link.
If you would like to also display additional links, e.g. new post, edit posts, new page, edit pages, new link, etc. Send me a pm message and I will send you a drop in code for both your buddypress group template and bp-groupblog theme template.
It is almost the same as the code mentioned in the post above, but also pulls in user roles and set some conditional values based on that.
October 20, 2009 at 11:53 pm #54905In reply to: New blog theme available for the Groupblog plugin
Mariusooms
ParticipantDoes the bp-groupblog have support for child themes? If so, can I copy my BP child theme, set it as a child theme for Group Blogs, and (hopefully) not have to re-theme bp-groupblog?
It has support for child themes, however in order for buddypress group related content to show you will need to set some function to pull in the group id. It should not be hard for you to adjust your bp child-theme. Just make a copy of it and do a quick study of the groupblog theme on how I pull in the group id belonging to the blog.
The readme instructs custom bp-groupblog themes to be put into the BP child theme folder and modified. Is there a bit more specific info on that?
If I understand you correctly, this has to to do with the theme pages that actually load inside the group component. Namely the two files blog.php and blog-latest.php. Both are loaded within the group context. Also both these files use the bp template plugin to make installing the plugin easier. However, if you wish to customize this, I encourage to move that folder to your active buddypress theme and adjust them as necessary.
So, just to be clear, these two files are not related to the blog theme, but belong to the group and active buddypress theme.
is there a way to add a link to the group’s blog’s dashboard under the “Blog” link the group side bar?
Sure there is, something like this might work:
<?php if ( bp_group_is_member() )
>
<?php
if ( get_groupblog_blog_id() ) {
$blog_details = get_blog_details( get_groupblog_blog_id() );
} else {
global $current_blog;
$blog_details = get_blog_details( $current_blog->blog_id );
}
?>
<a href="<?php echo bp_core_get_root_domain() . $blog_details->path ?>wp-admin"><?php _e('Dashboard', 'buddypress') ?></a>
<?php endif; ?>This checks the member is part of the group. Then get the blog id and parse it in to get the blog details. Alternatively if we are on a blog page we pass in the current blog id. Now we can use that to fetch the blog path. So wether you are on a group page or a blog page the link should always point to the dashboard, but only show for members of the group.
You can further enhance this code to pull in the user role and show post links depending on their role cap.
Let me know if you need more help…I will do my best to help when I can.
Looking at this code, we may actually create some more template functions to make constructing relevant blog links easier, but go ahead if you feel comfortable with juggling some code around.
October 20, 2009 at 11:38 pm #54904In reply to: 'empty' group members
Mark
Participant@DJPaul, thanks for the feedback and the info you offer. My basics:
1. wpmu 2.8.4a
2. subdomain
3. n/a
4. upgraded WPMU regularly since 2.7
5. Was WPMU functioning properly before installing/upgrading BuddyPress? yes
6. BP 1.1.1
7. Did you upgraded from a previous version of BP? last week when the current version was released.
8. Do you have any plugins other than BuddyPress installed and activated? Yes, 2 were activated on the main admin when and since this has occured:
a. Group Forum Subscription for BuddyPress
b. BP Groupblog
In mu-plugins directory:
akismet-credit-inserter
akismet
sitewide-tags
wordpressmu-favicon
9. Are you using the standard BuddyPress themes or customized themes? Standard
10. Have you modified the core files in any way? No
11. Do you have any custom functions in bp-custom.php? No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Using built-in bbPress
13. The errors that occurred during the period these member place holders ’empty’ were created are at the link. The IDs # were different. With bp-groupblog activated this error is generated any time any group is visited (the group doesn’t need to have a groupblog). Prior to this ‘event’, Groupblogs were activated when members joined other groups without any ’empty’ members being added to the group:
https://wordpress.org/support/topic/319417
Some blogs (not home blog) have feedwordpress plugin activated. It’s use generates errors/warnings. The ‘Failed to fetch’ started yesterday and the plugin is no longer functioning. Neither of these errors are logged around the time the ’empty’ members were added to groups:
[20-Oct-2009 17:15:32] PHP Warning: Illegal offset type in /home/xxxx/public_html/wp-includes/rss.php on line 1459
[20-Oct-2009 17:34:20] MagpieRSS: Failed to fetch (HTTP Error: <url> malforme)
October 20, 2009 at 9:37 pm #54900In reply to: What happened to the (awesome) Member Blog Theme ?
Bowe
ParticipantIt doesnt have to be exactly like this.. just a wordpress theme that has a look that suits with the normal BuddyPress layout.. I’ll try to look into this, and hopefully I can make something, but some help would be needed!
October 20, 2009 at 9:17 pm #54896shedmore
ParticipantP.S. stwc – There isnt really much Andy could have done better…its the plugins core that isnt really desinged to work with Buddypress (and Andy didnt write that).
Andy created a single file “port” (to help the community) that amemnds certain functions to the core of the original plugin – to help “insert” data into buddypress fields. Unfortunately, becuase of the way the core of the plugin was written…there are some problems that can’t be addressed with default hooks (ie globals).
I am going to write a post about this soon, and hopefully get some input from the community on the best way to handle the registrationn process in accounting for all of these “new” ways to register.
HOpefully there is a solution I am not seeing
October 20, 2009 at 9:17 pm #54895Paul Wong-Gibbs
KeymasterTo defend Mr Peatling, I believe he has just taken the existing WordPress FBC plugin and adapted it to work with WPMU/BuddyPress.
October 20, 2009 at 8:58 pm #54892In reply to: What happened to the (awesome) Member Blog Theme ?
jobjorn
ParticipantIt’s a mock-up indeed: http://apeatling.wordpress.com/2008/06/12/new-buddypress-theme/
October 20, 2009 at 8:43 pm #54891In reply to: What happened to the (awesome) Member Blog Theme ?
Paul Wong-Gibbs
KeymasterThat was either a mockup or from a very early version of BuddyPress. I’ve never seen it.
October 20, 2009 at 8:40 pm #54889In reply to: Theme buddypress.org
Paul Wong-Gibbs
KeymasterWhat Mythailife said. We get asked this virtually every week.
October 20, 2009 at 8:31 pm #54888In reply to: email posts to all subscribers of main blog
Paul Wong-Gibbs
KeymasterI’ve not seen anything that does this yet. I’ve also marked this post as not a support question, as it concerns a feature discussion/request rather than a bug in the BuddyPress core.
October 20, 2009 at 8:26 pm #54886In reply to: 'empty' group members
Paul Wong-Gibbs
KeymasterNot seen that before. Very odd. Could you run through https://buddypress.org/forums/topic/when-asking-for-support so we can check the basics?
October 20, 2009 at 8:24 pm #54885In reply to: Problem uploading an avatar
Paul Wong-Gibbs
Keymaster5. Was WPMU functioning properly before installing/upgrading BuddyPress?
A. NoWhat wasn’t working properly? You can’t expect BuddyPress to work if WPMU wasn’t working properly first.
I think this error relates to not being able to manipulate files in /var/www/html/SITE/wp-content/blogs.dir/. Hmm.
With regards to what group/user your web server runs at, if this isn’t your own server, your host can help. Where are you getting hosting?
October 20, 2009 at 8:23 pm #54884In reply to: wp-sigup.php and /register
trusktr
Participant@Detective Thanks for the fix! it worked!
https://buddypress.org/forums/topic/wp-sigupphp-and-register#post-26127
By the way, for those of you that are wondering, you have to add Detective’s fix to your theme’s functions.php file!
I was also having the error where the code was stopping at:
<script type=”text/javascript”>var ajaxurl = “http://yourdomain.com/wp-signup.php”;</script>
Detective, How exactly did you figure this out and how does the fix work and why are we getting this error? This should be a fix for the next release of BuddyPress.
Also, everyone, make sure you copy over the functions in the “functions.php” file from the bp-sn-parent theme to the “functions.php” file in your own theme. Without these functions, some things won’t work like member and blog listings as well as sidebar customization when using the “home.php” template.
October 20, 2009 at 8:17 pm #54883In reply to: Specific Widgets
Paul Wong-Gibbs
KeymasterWidgets displaying on certain blogs/pages is probably something you are best searching the WordPress forum/plugin directory for, as it’s not something that BuddyPress implements.
October 20, 2009 at 8:11 pm #54880In reply to: Translation and path errors in backend @DJPaul
Paul Wong-Gibbs
KeymasterThe text “The default theme for BuddyPress” cannot be translated as it is in a .css file. As only the site administrator will see that text when they activate the theme, is it a big issue? The other text here is part of WordPress.
The wrong path thing is more interesting and there are some other forum posts here with that problem. I don’t know when I will get time to look into it so maybe someone else can help.
October 20, 2009 at 7:28 pm #54878In reply to: Theme buddypress.org
Mythailife
ParticipantNo, I’ve asked that question already. They want to make this site unique. Makes sense…
-
AuthorSearch Results