Search Results for 'wordpress'
-
AuthorSearch Results
-
April 24, 2010 at 6:19 am #74956
In 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 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.
April 23, 2010 at 11:35 am #74863Windhamdavid
ParticipantI’m becoming a fan of WP-Invites and you might want to try this…
https://wordpress.org/extend/plugins/wp-invites/
It’ll allow you to dole out codes for users to signup and as far as tracing goes, I’d just generate one invite code for each existing member and it’ll store that invite code with the new user profile so that you are able to determine who the invitation was send from based on which user was giving the code. I’d even go so far as manually generating the code with the existing username in it so that you don’t have to go digging to determine whom signed up whom.
April 23, 2010 at 10:58 am #74861In reply to: Avatar database store
marcoslavorato
MemberThanks Paul. So, how can I get the user avatar? How WordPress link the userwith the avatar if is not sotred on database? Thanks.
April 23, 2010 at 10:43 am #74860In reply to: BP Xtra Signup
Anonymous User 96400
InactiveBowe, good suggestions. I’ll have a lok at the API again and get back to you with a timeframe.
You can download the plugin now from the repository:
April 23, 2010 at 9:53 am #74853In reply to: [New Plugin] BP Advanced SEO
Anonymous User 96400
InactiveThe plugin is now in the repository. I made some slight improvements to the code and added a char counter to the description textareas. Enjoy!
April 23, 2010 at 8:17 am #74847r-a-y
KeymasterInvite Anyone plugin:
https://wordpress.org/extend/plugins/invite-anyone/
I don’t think that plugin has the “tracing” ability you want though. You could bring it up to Boone, the plugin author, as a feature request.
April 23, 2010 at 7:48 am #74843In reply to: Creating sub social network / nings
Avatar
ParticipantI was thinking along the same lines.
do you know if this works, and if they get their own members
or using the same database of members.
I would like to experiment with this
and figure out how to really make it work.
If anyone has info or ideas please drop me a line.
@kylecassey…
you would just use the social features (the blog just comes with it) ; )
WPmu is really just one install with multiple blogs
but soon with WP 3.0 you’ll be able to do the same thing with one WordPress install.
– Avatar –
.
April 23, 2010 at 7:10 am #74839In reply to: 404 error on BP links
claud925
ParticipantFinally I got it working
Well first add the lines from this patch https://trac.buddypress.org/ticket/1426 to bp-core/bp-core-catchuri.php
and then go to bp-core.php and in line 95 put the code like this (note the index.php)
$bp->root_domain = bp_core_get_root_domain() . '/index.php';Well, also, I have a custom template, and in my navigation I have manually put the links in the header to look like this:
<li><a href="http://yourdomain.com/wordpress/index.php/activity/" title="Actividad">Actividad</a></li>but it probably works also in the bp-default theme.So, hope this help someone
April 23, 2010 at 5:25 am #74830In reply to: 404 error on BP links
claud925
Participant@qbuster Well when you install this small fix https://trac.buddypress.org/ticket/1426 you can access links like wordpress/index.php/members (so thats something). But all the buddypress links remain being wordpress/members, etc.
So, I tried to change the slug as explained in here https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/ to see if it works change members to index.php/members, but it returns the 404 error.
So any ideas on how to change the links on buddypress to include the index.php ?
-
AuthorSearch Results