Search Results for 'buddypress'
-
AuthorSearch Results
-
August 28, 2009 at 10:00 am #51678
In reply to: buddypress on a certain blog
pxlgirl
ParticipantOk, I wasn’t aware of that the plugin would be activated side wide, that explains certain behaviour. thnx!
August 28, 2009 at 9:42 am #51676In reply to: P2 Theme As The Wire/Wall?
abcde666
Participant@John James,
when you say:
“I’m in the process of porting the P2 theme into the new BP 1.1 framework”
what does that mean ? Will there be a P2-theme for BuddyPress ? Could you please explain ?
Many thanks,
Erich
August 28, 2009 at 7:05 am #51673In reply to: Forum Integration: HELPING HINTS
elishevadpw
ParticipantNever mind I got the log in for the admin wrong.
My problem is now that I can’t post anything on the forum through buddypress groups.
August 28, 2009 at 6:23 am #51671r-a-y
KeymasterAdd your register_sidebar() functions code from your existing WordPress theme’s functions.php file to your BP Member theme’s functions.php file.
Then your WordPress sidebar should show up.
August 28, 2009 at 6:13 am #51670In reply to: Could I change the wording of the tags
Mohit Kumar
ParticipantAugust 28, 2009 at 6:03 am #51669hitekhomeless
Member^
August 28, 2009 at 2:06 am #51659In reply to: buddypress on a certain blog
Jeff Sayre
ParticipantI have set up another blog only for buddypress due to create an online community.
You cannot set up BuddyPress on a single blog. BP is installed as a plugin suite for all of WPMU.
Each time I activate the plugin on the community’s backend page, it is also gets activated on every other blog I’ve created.
I’m not sure exactly what you are saying. BuddyPress will display (or list) all blogs, members can even access other members’ blogs, and there is a main sitewide blog. But, BP does not get activated on each blog.
You could write a custom function that will only display the main blog, filtering out all other members’ blogs, but I would imagine that your members will want to have their blogs accessible to everyone.
August 27, 2009 at 10:24 pm #51656In reply to: P2 Theme As The Wire/Wall?
abcde666
Participantis there a chance that BuddyPress integrated P2-theme for the wire and forum as a standard ? I think that would be a great thing and would provide a very quick solution in order to have the posts in a threaded version – which would make BuddyPress superb !
Any thoughts from Andy about this ?
August 27, 2009 at 8:53 pm #51652In reply to: Unable to authorize groum membership requests
r-a-y
KeymasterJust experienced the OP’s problem.
I looked into it and found a tentative fix… though a BP dev will need to look at the code.
In “bp-core/bp-core-notifications.php”, look for the bp_core_notifications_for_user() function.
Then look for these lines:
$item_id = ( 1 == $action_item_count ) ? $component_action_items[0]->item_id : false;
$secondary_item_id = ( 1 == $action_item_count ) ? $component_action_items[0]->secondary_item_id : false;Change this to:
$item_id = $component_action_items[0]->item_id;
$secondary_item_id = $component_action_items[0]->secondary_item_id;I don’t know why there was a check done for only 1 item and then returning false for more than 1… if a BP dev can explain why, that’d be great.
Let me know if anyone encounters any problems.
August 27, 2009 at 8:32 pm #51650peterverkooijen
ParticipantSuccess! Solution found here.
The Javascript:
<script type = "text/javascript">
function copyinput()
{
var tmp = document.getElementById('blog_title').value;
tmp = tmp.toLowerCase().replace(/^s+|s+$/g, "").replace(/[_|s]+/g, "");
tmp = tmp.replace(/[^a-z0-9-]+/g, "").replace(/[-]+/g, "-").replace(/^-+|-+$/g, "");
document.getElementById('blogname').value = tmp;
}
</script>The customized function:
function custom_signup_show_blog_form( $blogname = '', $blog_title = '', $errors = '' ) {
global $current_site;
?>
<div id="blog-details-fields">
<label for="blog_title">Blog title</label>
<?php if ( $errmsg = $errors->get_error_message('blog_title') ) { ?>
<p class="error"><?php echo $errmsg ?></p>
<?php }
echo '<input name="blog_title" type="text" id="blog_title" value="'.wp_specialchars($blog_title, 1).'" maxlength="24" onkeyup="copyinput()"/></p>';
// Blog name
if ( 'no' == constant( "VHOST" ) )
echo '<label for="blogname">' . __('Blog Name:', 'buddypress') . '</label>';
else
echo '<label for="blogname">' . __('Blog Domain:', 'buddypress') . '</label>';
if ( $errmsg = $errors->get_error_message('blogname') ) { ?>
<p class="error"><?php echo $errmsg ?></p>
<?php }
if ( 'no' == constant( "VHOST" ) ) {
echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'.$blogname.'" maxlength="50" /><br />';
} else {
echo '<input name="blogname" type="text" id="blogname" value="'.$blogname.'" maxlength="50" /><span class="suffix_address">.' . $current_site->domain . $current_site->path . '</span><br />';
}
if ( !is_user_logged_in() ) {
echo '<p class="help-text">';
print '(<strong>' . __( 'Your address will be ', 'buddypress' );
if( 'no' == constant( "VHOST" ) ) {
print $current_site->domain . $current_site->path . __( 'blogname', 'buddypress' );
} else {
print __( 'domain.', 'buddypress' ) . $current_site->domain . $current_site->path;
}
echo '</strong>. ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)', 'buddypress' ) . '</p>';
echo '</p>';
}
?>
<p>
<label for="blog_public_on"><?php _e( 'I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site.', 'buddypress' ); ?> </label>
<label class="checkbox" for="blog_public_on">
<input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if( !isset( $_POST['blog_public'] ) || '1' == $_POST['blog_public'] ) { ?>checked="checked"<?php } ?> />
 <?php _e( 'Yes', 'buddypress' ); ?>
</label>
<label class="checkbox" for="blog_public_off">
<input type="radio" id="blog_public_off" name="blog_public" value="0" <?php if( isset( $_POST['blog_public'] ) && '0' == $_POST['blog_public'] ) { ?>checked="checked"<?php } ?> />
 <?php _e( 'No', 'buddypress' ); ?>
</label>
</p>
</div>
<?php
do_action('signup_blogform', $errors);
}What this does:
When the user starts typing the blog title – limited to 24 chars – the Javascript dynamically fills in the blogname for the URL.
The user can manually change the blogname if he/she wants. Not sure how that would work out…
You could probably also hide the blogname field, either through type=”hidden” or CSS. Haven’t tested all these options yet.
But imho this looks like a very versatile solution.

Or have I overlooked some critical issues? Comments very much appreciated!
August 27, 2009 at 7:37 pm #51648In reply to: User called zhanglingjuan114 possible spambot?
r-a-y
KeymasterI would try to prevent member registration through .htaccess:
http://wpmututorials.com/how-to/spam-blogs-and-buddypress/
If not .htaccess, then try WP Hashcash, but I prefer the simplistic method of blocking through .htaccess. This will block most spam signups, but of course you can’t block everything!

Thanks to Darcy Norman for the original tip!
August 27, 2009 at 5:53 pm #51641In reply to: White Screen of Death
adyba
ParticipantPaul,
The URL where I’m testing the BP is http:// mysupport.byethost13.com it is shared hosting where each subdomain that belongs to my account looks like root. All root files must be uploaded into \htdocs folder that pretends to be root.
Once installed, only the core Blog is fully available. Users (user1, user2) have created their blog(s). Posts are accessible by Site Wide Activity/Wires but no permalinks expect the main blog are accessible. Thus no user nor admin personal blogs (comments) aren’t accessible.
My hosting program allows the .htaccess. The links to the missing elements seems to be OK. It properly generates addresses like http://mysupport.byethost13.com/personal/2009/08/27/hello-world-2/ but it is empty.
The /wp-content/blogs.dir contains strange sub-folder structure
/wp-content/blogs.dir/1/files/avatars/2(4) where two and four is a Id of users that have
uploaded their avatar. Gods know what does it mean the 1 in the root.
For testing purposes I have created your account (Id 4) JDPaul/password. I just wanted to test the BP abbility to access/write the folder. Avatar was uploaded.
My conclusion:
1) BP is talsk to MySql
2) tld/blog works as expected
3) All site.tld/users links + site.tld/groups seems to be fine
4) At least part of the BP code can write the blogs.dir folder
5) For some reason site others blog permalinks site.tld/user1, site.tld/user2, site.tld/personal do not work.
Please feel free to log-in and play. I believe we both need a computer aided check list

1. Which version of WPMU are you running?
WordPress MU 2.8.4.
2. Did you install WPMU as a directory or subdomain install?
directory
3. If a directory install, is it in root or in a subdirectory?
root as much it can be on shared host
4. Did you upgraded from a previous version of WPMU? If so, from which version?
no
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
there was no trafic
6. Which version of BuddyPress (BP) are you running?
BP 1.0.3
7. Did you upgraded from a previous version of BP? If so, from which version?
no
8. Do you have any plugins other than BuddyPress installed and activated?
no
9. Are you using the standard BuddyPress themes or customized themes?
standard – works fine
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?
not yet
13. Please provide a list of any errors in your server’s log files.
August 27, 2009 at 4:42 pm #51639In reply to: BuddyPress Showoff: Post your links
aproimage
ParticipantRight, after a few months work, I’ve finally got my first attempt at a WPMU / Buddypress site up and ready for testing, excuse a few rough edges that need some tidying, but here’s my two cents.
Basically it’s a philosophy social network for everyone, “The quest for philosophical answers” in a manner of speaking I’d say it’s a bit like Twitter with direction, I’d love to hear any feedback or suggestions, I am well aware there is room for improvement and there are still check boxes left on my to-do list but hopefully you’ll get the idea.
It is my first go though so be gentle with the over technical criticism.
August 27, 2009 at 2:41 pm #51636In reply to: White Screen of Death
August 27, 2009 at 2:14 pm #51633In reply to: Hidden Groups should not be hidden from Admin
Mariusooms
ParticipantUhmm…while I do agree there should be an option to do so, your argument did made me chuckle as I don’t think a terror cell would need your network. Especially considering that you can download wordpress and buddypress free of charge.
August 27, 2009 at 1:05 pm #51628In reply to: Hidden Groups should not be hidden from Admin
Sam Steiner
ParticipantIs this legally OK to have groups in BuddyPress that are not even visible for the administrator who is responslible for the contents of his site?
Worst case, a terror cell could open a hidden group on our church network and use that to organize attacks without even the administrator knowing of the existence of such a group. I think this concept is a bit strange.
August 27, 2009 at 7:20 am #51625In reply to: page not loading: http://buddypress.org/forums/
Paul Wong-Gibbs
KeymasterI’ve seen this sort of issue with sites using wp-supercache with certain plugins before.
August 27, 2009 at 4:22 am #51619In reply to: Can't create groups
andisites
ParticipantI’m having a similar problem. Just did a fresh install with WordPress MU 2.8.4a and the trunk version of BuddyPress 1.1. Also installed bbPress via the WP admin panel. Went through all the setups for BuddyPress (General, Components, Forums), but when I go to the Profile Field Setup it tells me I don’t have any groups. When I try to add one, it returns the message, “There was an error saving the group. Please try again.” If I try to add a group directly via the site, I get the message (in a big scary red bar), “There was an error saving group details, please try again.”
I noticed that the database only has one table with the wp_bp prepend (wp_bp_activity_user_activity_cached). Another install I did (based on WMU 2.8.2, BuddyPress 1.0.3, and current bbPress) resulted in a database with a gazillion wp_bp tables. Is that the problem, and if so, how do I get those tables? And if not…wassup? Having groups is kinda the point, after all.
Otherwise, I’m looking forward to skinning the new template framework (ONCE, rather than twice). Thanks for your patience with a relative BP newbie…
August 27, 2009 at 3:50 am #51617Jeff Sayre
ParticipantThe blank (or white) screen issue on these forums is not the same thing as the “White Screen of Death”. A site that experiences a WSOD is basically not working, is inaccessible, and often indicates an issue with the codebase itself.
The issue with the blank screen on BP.org is not related to the codebase. Whatever is causing this issue will not affect your install.
See this thread for more information.
August 27, 2009 at 2:21 am #51614gerikg
Participantrefresh i think it gets “stuck”
August 27, 2009 at 2:19 am #51613Nightlyfe
ParticipantI’m getting daily WSOD on THIS site — that not building my confidence.
August 27, 2009 at 1:41 am #51611In reply to: Use Album Plugin or Wait?
arezki
ParticipantI don’t know if my contribution is helpful, but I installed NextGen gallery for photo management and wp-greet to run a greeting card mailing module.. all of that works seamlessly on Buddypress.
August 27, 2009 at 1:24 am #51610In reply to: User Blogs use same theme as default BP theme?
arezki
ParticipantWell…I am not a pro at all but I managed to uninstall most of the existing themes, and sort of replaced the default theme by the buddypress theme. New users by default end up with the buddypress style, but may have another option as I left another theme as I was afraid to delete everything that was there before. So my recommendation: make sure you maintain a backup of all your stuff. The identify the themes that you don’t like and disable them. Then I think the one you need to focus on is called “default.” It’s a folder called /default in /wp-content/themes/ Then the issue to figure out where the buddypress theme is and put its content in the ‘default’ folder. I am almost sure it will do the trick… but please please… backup your file. Good luck.
August 26, 2009 at 7:42 pm #51609In reply to: 2.7.1/rc2 bp-message can’t be loaded?
Paul Wong-Gibbs
KeymasterAnother zombie thread.
EDIT: To clarify, you are responding to a post four months old and several versions of WPMU and BP out of date. Please start a new thread and include the details listed in this post: https://buddypress.org/forums/topic/when-asking-for-support
August 26, 2009 at 6:40 pm #51603r-a-y
KeymasterHey hatiro,
Here’s the code again on PasteBin:
http://buddypress.pastebin.com/f36cf5cab
I’ve set it so it won’t expire.
Remember to add the bp_loaded() function to your /wp-content/plugins/bp-custom.php
Also remember to change the blog directory loop in your BP member theme – /wp-content/bp-themes/YOURBPTHEME/directories/blogs/blogs-loop.php
-
AuthorSearch Results