Search Results for 'wordpress'
-
AuthorSearch Results
-
April 25, 2010 at 1:26 pm #75082
In reply to: BuddyPress Default theme for bbPress
Arturo
Participantwp-blog-header.php is the old file to include, add at the top just after <?php the require_once…. with the full path to wp-load.php
see https://bbpress.org/documentation/integration-with-wordpress/ “Functions” section
April 25, 2010 at 1:19 pm #75080In reply to: broken posts by > or <
Paul Wong-Gibbs
KeymasterHi
Post where? In a group forum? Also, what versions of WordPress and BuddyPress are you using please.
April 25, 2010 at 1:12 pm #75078In reply to: BuddyPress Default theme for bbPress
dainismichel
ParticipantWell, I added this to bb-config.php
`// Include WordPress functionality
$currDir = dirname(getcwd());
// Make sure this isn’t install or admin (go up if it is)
if(!file_exists(“$currDir/wp-blog-header.php”))
$currDir = dirname($currDir);
if(!file_exists(“$currDir/wp-blog-header.php”))
die(“Cannot find WordPress integration files.”);
require_once(“$currDir/wp-blog-header.php”);`got the code from here
http://labs.b5media.com/blog/creating-the-anypress-solution/…still need to test…but the theme seems to work now…i think
April 25, 2010 at 8:27 am #75055In reply to: 500 Errors (1and1 webhost)
mbiernat
Participant1and1 works fine with WordPress. I run a number of sites with 1and1 not an issue, only MU does not work. I know this is marked resolved
I have been testing Buddypress and MU for a while now, and It has nothing to do with BuddyPress. It is an MU issue with 1and1April 25, 2010 at 8:21 am #75053In reply to: Welcome Pack update request
Paul Wong-Gibbs
Keymaster@Erich73 On WPMU, the user database is shared between all sites. The user registration is executed on the main blog. In Welcome Pack’s case, there’s not a lot of difference therefore if it runs sitewide or on a per-blog basis, so I set it to run sitewide just in case there is some unusual way that WordPress user accounts can be added.
April 25, 2010 at 6:24 am #75048In reply to: [Resolved] CubePoints and BuddyPress Intregration?
Tosh
ParticipantHere is the official thread on the new plugin
Download link is there as well. I haven’t tested CubePoints with WordPressMU.April 24, 2010 at 5:39 pm #74981In reply to: buddypress photo upload
r-a-y
KeymasterCheck out the following plugins:
Forum attachments for BP:
http://teleogistic.net/code/buddypress/forum-attachments-for-buddypress/
BP Forum Extras:
https://wordpress.org/extend/plugins/buddypress-group-forum-extras/
April 24, 2010 at 5:37 pm #74980In reply to: Member Blogs
r-a-y
KeymasterHave you created a network in WP 3.0?
You have to do this first before you can enable user blogs.
Read this guide by Andrea_r:
April 24, 2010 at 6:19 am #74956In reply to: How to control spam registration?
Michael J 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!
Michael J 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 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: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 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 23, 2010 at 11:07 pm #74937In reply to: user created eccommerce stores
r-a-y
KeymasterWithin their own profiles? Not that I know of.
However, if you use WPMU, your user blogs could use some WPMU-compatible e-commerce plugins such as eShop or Quick Shop.
eShop – https://wordpress.org/extend/plugins/eshop/
Quick Shop – https://wordpress.org/extend/plugins/quick-shop/
Hope that helps!
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.
April 23, 2010 at 7:33 pm #74917In reply to: How do you create a subpage
r-a-y
KeymasterCreate a page in WordPress, then create a WordPress sub-page?
April 23, 2010 at 6:44 pm #74912hotforwords
ParticipantThanks everyone for the responses! Now I have a better understanding of how the different components work together!
In order to keep the stickiness of people coming back to my website when someone replies to a comment of theirs on the WordPress Post side.. I reactivated my Comment Reply Notification plugin for WordPress so now people get notified by the BuddyPress stuff as well as the WordPress Stuff!!
Just as a side note, my website has over 168,000 comments on it and I attribute that to my use of the comment reply notification plugin that I’ve used for the past couple years. Glad to see that BuddyPress has those notifications built in!
I’ll most likely add the Forum Reply Plugin that you mention r-a-y as well. Thanks for the useful post! And thank you all for your help!
Next up.. getting my BBpress skinned to look like my site and getting that darned BuddyBar to work
April 23, 2010 at 6:14 pm #74907In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantI’ve made it so that my assets get put into a folder called files and it has the 777 permissions.
PHP Version 5.1.6
April 23, 2010 at 5:53 pm #74905In reply to: Avatar database store
Paul Wong-Gibbs
Keymasterbp_comment_author_avatar() should work when used in the comments section of a WordPress blog post or page.
April 23, 2010 at 5:27 pm #74897r-a-y
KeymasterWhat Boone said.
Blog-related stuff is handled by WordPress.
Activity replies are handled internally by BuddyPress.
I would recommend what glamgrif mentioned and that is to disable the activity stream for blog comments and forum posts because the activity stream and blog comments / forum posts are independent from one another.
https://buddypress.org/forums/topic/faq-how-to-code-snippets-and-solutions#post-37843
You could try replacing blog comments with the activity stream:
https://wordpress.org/extend/plugins/buddypress-activity-as-blog-comments/
For forum replies, you could use a BuddyPress plugin:
https://wordpress.org/extend/plugins/buddypress-group-activity-stream-subscription/
April 23, 2010 at 5:17 pm #74896hotforwords
ParticipantBoone, that answers my question I believe.. BuddyPress will NOT email you if someone posts a comment reply on the WORDPRESS side.
Then why is the option on BuddyPress called “A member replies to an update or <b>comment</b> you’ve posted”?
Are the “comments” in BuddyPress somewhere? Are those posts in the Forum considered “comments”?
Thanks Boone!
D Cartwright, how is my show considered NSFW? I have over 300 million views on YouTube and they wouldn’t allow my show if it was not safe for work!
Thanks glamgrif! As Boone said above, I think the WordPress side comments don’t get email notifications from BuddyPress.. or is that not correct?
April 23, 2010 at 5:17 pm #74895r-a-y
KeymasterOther suggestions:
BP Group Control:
http://danpolant.com/bp-group-control/
Secure Invites for WPMU (note it works for WPMU only!):
https://wordpress.org/extend/plugins/wordpress-mu-secure-invites/
April 23, 2010 at 3:01 pm #74883In reply to: Member Blogs
Griffin Boyce
ParticipantIf you are just using WP-standard (ie one blog), then you will need to either switch to WPMU -OR- wait for v3.0 when this functionality comes to standard WP: http://technosailor.aaronbrazell.com/2009/05/30/wordcamp-sf-announcement-wordpress-and-wordpress-mu-to-merge/
April 23, 2010 at 1:52 pm #74875In reply to: BuddyPress and WordPress 3.0
Ipstenu (Mika Epstein)
ParticipantWhat version of PHP? (I’m at the ‘let’s see what’s different between you and me!’ stage of things)
ETA: Are the permissions on your blogs.dir correct? I had to make the avatar folder and set permissions on that directly
April 23, 2010 at 12:31 pm #74866In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantHi ipstenu, I’ve upgraded to the latest nightly, haven’t noticed much difference, and the avatars still don’t work.
I do have GD library 2.0.28 installed and >>
array(12) {
[“GD Version”]=>
string(27) “bundled (2.0.28 compatible)”
[“FreeType Support”]=>
bool(true)
[“FreeType Linkage”]=>
string(13) “with freetype”
[“T1Lib Support”]=>
bool(false)
[“GIF Read Support”]=>
bool(true)
[“GIF Create Support”]=>
bool(true)
[“JPG Support”]=>
bool(true)
[“PNG Support”]=>
bool(true)
[“WBMP Support”]=>
bool(true)
[“XPM Support”]=>
bool(false)
[“XBM Support”]=>
bool(true)
[“JIS-mapped Japanese Font Support”]=>
bool(false)
}
So that’s not the issue either. It doesn’t look like it’s getting to the actual thumbnail creation.
-
AuthorSearch Results