<a href="” rel=”bookmark”>
Quick Post Widget allows guest posting with captcha:
https://wordpress.org/extend/plugins/quick-post-widget/
BuddyPress Activity Plus allows embedding or uploading media directly to the activity stream:
http://wpmu.org/introducing-buddypress-activity-plus-a-free-plugin-for-uploading-and-embedding-media/
https://wordpress.org/extend/plugins/buddypress-activity-plus/
Hope this helps! 
I installed buddypress on an existing wordpress installation. I have set up a few groups that members can post in, however when I am logged in as admin I only see an option to view, or delete the post. I just want to edit it so it conforms to my blog policy..But I cannot see anywhere to do that.
So I see you installed the BP Template Pack plugin.
You still need to go through the compatibility process as seen here https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
An example of how this is done https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
I have author bios on my blog, see this: http://culturismo-fitness.com/puedes-ganar-musculo-pero-se-realista/
It is a example… if you wanna how to: http://gabediaz.com/blog/displaying-author-pic-and-bio-in-your-wordpress-post/
== if i can keep my front end of wordpress the same as usual ==
Sure you can. Install the BP Template Pack plugin – https://wordpress.org/extend/plugins/bp-template-pack/
This is the process you will go through – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
Sample walkthrough – https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
Hi, thanks for your response. Not sure I understand what you mean. I installed buddypress from the “add plugin” option. Do you mean the primary site setting? That is indeed set to: http://www.domain.com/wordpress/.
Can I not use buddypress with multiple sites? I don’t mind if the user configurations are stored on the primary site, but I want the users to be directed back to their own site when they login…
What you’re essentially doing is adding a new component. See https://wordpress.org/extend/plugins/buddypress-skeleton-component/ for some inspiration. Or, for something a little simpler, see how BP itself does it. Look in bp-friends.php for an easy example. The key functions are: friends_setup_globals(), friends_setup_nav(), and the screen functions referred to in friends_setup_nav(). Copy those to your own plugin file, change the function names (so you don’t get fatal errors) and then play around.
@naijaping : I think you overestimate my coding abilities
. While I’m familiar with PHP, the hooks and whatnot in WordPress and BB are a step beyond what I have the time to get my head around.
@nahummadrid : would love to see anything you get working.
Have you tried:http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/
I add the buddypress main ‘pages’ I need (forums only) in the settings. One can set the priority there as wel….
@hnla ppl says me u hav to upload ur .sql files to server bt in my wordpress folder i dont have any .sql files so that i was asking you how to import my .sql files frm sql server ….
Custom Profile Fields Buddy press plugins… there is a also a few permission plugins in there also… wordpress.org i found them months and months back still work…
drop me an email scott.brenton@ukushosting.com – I will walk you through it.
I’m going to come across a bit cold hearted here and say ‘Google Is Your Friend’. You will need to research these aspects to get familiar with what you need to do, this forum is for BP support and guiding on how to install a site to a server is a little outside of it’s remit (WP codex may have some guides?)
Essentially your hosts are only saying what they all will, when you set up a shared hosting account you are provided with a control panel along with url and login plus ftp access to your web directory.
CPanel is designed to be used by non technical users, it is a point and click interface to server management and pretty easy to use, you just need to spend a little time familiarizing yourself with it. For ftp you will need a client e.g filezilla to use to upload your site files (or you can use the cPanel filemanager upload capabilities, either way it’s not hugely difficult. Your database will also be set up via cPanel, then it’s simply a case of running the WP installer when the site files are in place and you have pointed a domain name to your provided IP.
@nlvp ,Try this : https://wordpress.org/extend/plugins/buddypress-profile-progression/
May be you can modify it to what you want
Yes.
The nesting of the sites themselves comes from WordPRess with multisite enabled. BP only does the community parts.
Thanks for the comment. But how does that explain the fact the there are two different functions that both return collections of members; but that each function returns a different member class with different fields/properties available?
Is this a purposeful design pattern common to PHP or WordPress apps? or is it just a product of open source development and the lack of an over riding design model?
Haven’t tested compat with BP yet https://wordpress.org/extend/plugins/opentok-video-chat/
Search result in trac and BP.org, good luck
https://buddypress.trac.wordpress.org/ticket/2642
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/bp-adding-2-when-spaces-are-included-in-username/
I can infact see the avatars in the WordPress dashboard, right there on the first page, under “recent comments” and again in the “users” section. When I select “crop image” it says “Your new avatar was uploaded successfully!” and it keeps showing the mystery man. The avatars are uploading fine, they’re in the directory, and displaying properly in the dashboard. However, any page that is supposed to display the avatar image (outside of the dashboard) is still displaying and also fetching the mystery man image, according to the source code when viewed in the browser. I just have the one domain, I’m using “public_html” as my root, which is 1 directory deeper than the actual root, as set up by my server. There hasn’t been any error reports (my error log is still empty).
Have you seen this new plugin? Looks perfect 
https://wordpress.org/extend/plugins/opentok-video-chat/
Platform is not BP compatible. I just downloaded it and verified. The author of the theme has put the ‘buddypress’ tag in the theme’s metadata, which tricks unsuspecting folks into thinking that it’s compatible. But there are no BP template files in the theme at all. (A pretty crappy thing for the author to do, if you ask me.)
Not to worry – you can make the theme compatible by installing the BuddyPress Template Pack: https://wordpress.org/extend/plugins/bp-template-pack/
Ok – trying again! Thanks for your patience!
`
<?php
/*
Template Name: Full width page
*/
/**
* @package WordPress
* @subpackage Dressed to impress
*/
get_header(); ?>
<?php if (have_posts()) : $postcount = 0;
while (have_posts()) : the_post();
$post_class = cs_getoption(‘index-style’) == 1 ? ‘preview-post-long’ : ‘preview-post’;
?>
<div class="page_fullwidth" id="post-“>
<?
endwhile;
//UNCOMMENT THIS IF YOU WISH TO ALLOW COMMENTS ON PAGES
/*rewind_posts();
if (have_posts()) : $postcount = 0;
while (have_posts()) : the_post();
comments_template();
endwhile;
endif;*/
else : ?>
`