Search Results for 'buddypress'
-
AuthorSearch Results
-
April 24, 2010 at 4:10 pm #74974
In reply to: Problems with translating
coffeeholic
ParticipantThank you for trying to help me out her

I still get the same error:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/mammabl1/public_html/wp-content/plugins/buddypress/bp-blogs.php on line 231
I tried both 64 and 96, but i still get the same error
April 24, 2010 at 3:14 pm #74967In reply to: [Resolved] CubePoints and BuddyPress Intregration?
gpo1
ParticipantDoes it work for WPMU & where can I download it
April 24, 2010 at 11:19 am #74964In reply to: iPad and iPhone Themes
Paul Wong-Gibbs
KeymasterAssuming you mean mobile browsers in general, one is apparently coming very soon! Check out https://buddypress.org/forums/topic/buddypress-iphone-theme-update
April 24, 2010 at 11:13 am #74962In reply to: Creating sub social network / nings
Paul Wong-Gibbs
KeymasterI don’t think you can do that without significant core hacking. I recall seeing someone investigating this months ago but I’m not sure if it was on the forums or on a ticket on https://trac.buddypress.org/
Have a read through this thread, as it’s got lots of discussion about this https://buddypress.org/forums/topic/can-you-multi-site-buddypress
April 24, 2010 at 9:16 am #74960In reply to: Going Live?
Anonymous User 96400
InactiveIt’s actually fairly easy. First you make a complete backup of your existing site (files and database). Then you copy the new files across to your server and activate BuddyPress. Adjust the options and you’re done!
If you don’t feel like setting all the options again or you have created already some groups for example, then you could export your local BP database tables and import them via PHPMyAdmin into your existing site.
The same is true for any blogs you have created locally that don’t exist yet online. In this case you will have to change some settings in the database after you imported the sql file. Basically, you do a search for your local url in your online database and replace it with your real url. You will have to do the same if you import the complete local database (e.g. if you synched your local dev site already with your online site).
It’s worth saying it again: Don’t forget to backup your existing site!
April 24, 2010 at 6:19 am #74956In reply to: How to control spam registration?
Mike Challis
ParticipantFYI, Today I updated SI CAPTCHA Anti-Spam for latest version of buddypress 1.2.3 compatibility
SI CAPTCHA Anti-Spam
https://wordpress.org/extend/plugins/si-captcha-for-wordpress/
This plugin adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, login, or all. In order to post comments or register, users will have to type in the code shown on the image. This prevents spam from automated bots. Adds security. Works great with Akismet. Also is fully WP, WPMU, and BuddyPress compatible.
April 24, 2010 at 6:05 am #74955In reply to: Dealing with COMMENT spam – help!
Mike Challis
ParticipantThe screenshots were from an old version. I have updated them. The CAPCHA looks nicer now.
SI CAPTCHA Anti-Spam
https://wordpress.org/extend/plugins/si-captcha-for-wordpress/changelog/
Today I updated it for latest version of buddypress 1.2.3 compatibility
April 24, 2010 at 4:39 am #74954In reply to: Buddypress Links Redirect To Home Page
moshthepitt
MemberOops sorry for late response.
Yeah, fix is as stated above by others: having a space in the display name causes BP to break
April 24, 2010 at 3:20 am #74953In reply to: BuddyPress and WordPress 3.0
Phlux0r
ParticipantI got all this working fine. See http://culture360.org Using WP 3.0 beta-1 and BP 1.2.3
Three things:
1. upload_path option in wp_options as per my post here: https://buddypress.org/forums/topic/buddypress-and-wordpress-30#post-48806
2. .htaccess file:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]3. My quick fix for the avatar size issue as per post here: https://buddypress.org/forums/topic/avatar-upload-issue-1#post-50231
HTH
April 24, 2010 at 3:13 am #74952In reply to: Avatar Upload Issues
Phlux0r
ParticipantFor avatar upload issues concerning size and if you’re getting the message: Cannot convert object of type WP_Error into string (or similar) see my post here: https://buddypress.org/forums/topic/avatar-upload-issue-1#post-50231
Maybe this will help some of you.
April 24, 2010 at 3:05 am #74951In reply to: Avatar Upload Issue
Phlux0r
ParticipantLooks like in BuddyPress 1.2.3 the avatar size check is not compatible with the WordPress thumbnailing function.
If you look in bp-code/bp-core-avatars.php, function: bp_core_avatar_handle_upload()
there is a getimagesize() call. That actually returns an array, not a single value so the if statement will not evaluate correctly and the code will always attempt to create a thumbnail. If that fails, the wp_create_thumbnail() function returns a WP_Error object, hence the message some are getting.
here’s my modded code to fix this issue:
/* Resize the image down to something manageable and then delete the original */
/* HACK made some changes to check image parameters more carefully */
$_size = getimagesize( $bp->avatar_admin->original['file'] );
if ( $_size[0] > BP_AVATAR_ORIGINAL_MAX_WIDTH ) {
$_thumb = wp_create_thumbnail( $bp->avatar_admin->original['file'], BP_AVATAR_ORIGINAL_MAX_WIDTH );
// Need to check if upload succeeded - issue with small files!
if ( is_object($_thumb) && get_class($_thumb) == 'WP_Error' ) {
bp_core_add_message( sprintf( __( 'Upload Failed! Error was: %s', 'buddypress' ), $_thumb->get_error_message()), 'error');
return false;
}
$bp->avatar_admin->resized = $_thumb;
}HTH
April 24, 2010 at 2:15 am #74950In reply to: Buddypress forum cannot create post
jivany
ParticipantYou could try what’s mentioned in this post:
https://buddypress.org/forums/topic/new-install-of-bp-press-cant-post-any-topics-in-forum#post-42915
April 24, 2010 at 1:42 am #74949joshmac
ParticipantMaybe something like this will help you out: http://buddydev.com/buddypress/bp-redirect-to-profile-plugin-redirect-users-to-their-profile-on-login-on-buddypress-sites/
April 24, 2010 at 1:00 am #74948In reply to: Member Blogs
LPH2005
ParticipantI have WP 3.0 beta 2 and BuddyPress 1.3 svn installed and do not see a way to get members to have blogs. Maybe this is missing in the settings area?
[This is a test installation and not live]
April 24, 2010 at 12:29 am #74944In reply to: How do you create a subpage
dre1080
Memberis there a away to do it through buddypress?
April 24, 2010 at 12:24 am #74943In reply to: Plugin Release: Group Activity Email Notifications
D Cartwright
ParticipantNope, the new version is here:
https://wordpress.org/extend/plugins/buddypress-group-email-subscription/
It’s looking very nice
April 24, 2010 at 12:19 am #74942In reply to: Buddypress forum cannot create post
mensenses
ParticipantI am really looking forward for someone to help me.
April 23, 2010 at 10:45 pm #74932w101
ParticipantThank you both, that helped…
I did however run into one problem. The file that I need to work on is located outside the bp-default:
wp-content/plugins/buddypress/bp-core/bp-core-signup.php
Isn’t that the file that I would edit to work on the positioning of text on the registration page? I may be wrong…
Thanks!
April 23, 2010 at 10:13 pm #74929Boone Gorges
KeymasterThe best way is to create a child theme, as per https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/, and to copy over registration/register.php from buddypress/bp-themes/bp-default into the child theme. Then you can make modifications til the cows come home
April 23, 2010 at 9:59 pm #74928In reply to: Search for Members and Pagination Bug
r-a-y
KeymasterThis thread is quite old.
Please stick to the thread you replied to:
https://buddypress.org/forums/topic/permalinks-not-working-in-buddypress-10-install
April 23, 2010 at 9:57 pm #74927In reply to: Permalinks not working in BuddyPress 1.0 install
r-a-y
KeymasterAre you using IIS? If so, this may help:
https://buddypress.org/forums/topic/404-error-on-bp-links#post-46617
April 23, 2010 at 9:56 pm #74926In reply to: Search for Members and Pagination Bug
cpmrgmt
ParticipantWhenever my Permalinks are not set to Default, every page or link take to white page so Buddypress cannot work at all. What to do?
Thanks.
April 23, 2010 at 9:46 pm #74924In reply to: Permalinks not working in BuddyPress 1.0 install
cpmrgmt
ParticipantHello
I am new here and just installed WPMU and Buddypress. This is my current issue:
Whenever Permalinks are not set to Default but to any other option, every page-link stop working.
The pages and links do normally work without a problem as long as Permalinks are set to Default.
Then I leave them working Default, what automatically stops Buddypress, since, according to message I get, Permalinks are required to get Buddypress work.
My server is Windows so I have erased the .htaccess file as directed by data provided for WPMU installation under windows server.
Any insight on how to make it work?
Thanks.
April 23, 2010 at 7:59 pm #74920In reply to: [Resolved] CubePoints and BuddyPress Intregration?
April 23, 2010 at 7:47 pm #74919In reply to: [Resolved] CubePoints and BuddyPress Intregration?
r-a-y
KeymasterYup that’s right.
The other thing is you might need to ensure that CubePoints is loaded as well.
Try something like this in your cubepointsbp() function:
function cubepointsbp() {
if ( function_exists( 'cp_init' ) ) {
//your ninja code
}
else {
// display error message
add_action( 'admin_notices', 'cubepointsbp_error_msg');
}
}
function cubepointsbp_error_msg(){
echo '<div class="error fade" style="background-color:red;"><p><strong>CubePoints for BP requires the CubePoints plugin in order to work. Please deactivate this plugin or activate <a href="https://wordpress.org/extend/plugins/cubepoints/">CubePoints</a>.</strong></p></div>';
}Untested… but see if that works.
-
AuthorSearch Results