Search Results for 'spam'
-
AuthorSearch Results
-
January 18, 2009 at 6:19 pm #36451
In reply to: Is Blog Spam a Big Problem
Anonymous User 303747
InactiveI think it somewhat depends on the kind of network you have but I generally recommend against open registration for blogs and, instead, have people request a blog with you instead. Yeah, it’s a bit more work and yeah, it takes away some spontaneity – but the reality is you’ll have tenfold the amount of work with monitoring for SPAM blogs AND people that do the spur of the moment “let’s start a blog” thing are not your long term bloggers either. What’s the benefit of having 100 inactive blogs on your network? I’d rather have 5 that update daily with solid, quality content. As with many things in life, quality trumps quantity any day of the week.
So, it may sound a bit counter-intuitive but I’m all for slowing down to speed up with blogs/members that are worth your effort.
January 14, 2009 at 7:09 pm #36294In reply to: can a user enter his own password at registration?
nickmu
MemberThere’s gotta be a way for a user to create his or her own password when registering. I know alot of people that have several specific passwords they use when joining sites. Having buddypress send one to you in the mail makes it more difficult for people to sign in once they’ve joined. I agree that it helps against spammers but I’ve got re-captcha hooked up and its working great!
Any more suggestions? Does a plugin like Register plus work with buddypress and do this?
thanks for your help
Mike Pratt
Participant1. not to be a dick but it would help a lot if you could create a better topic title than WTF??
2. that error smells really fishy…almost spam like. scary. curious to see what comes of it
January 11, 2009 at 6:09 pm #36107In reply to: can a user enter his own password at registration?
fishbowl81
ParticipantIt can, but the amount of spam accounts will increase dramatically. The reason for sending the account password via e-mail is to prevent spammers from simply entering a known username and password and creating 1000’s of spam blog posts on wordpress mu.
I have a similar situation, where I have a current site with 15k users, username and passwords. What I used is this plugin. It works well on wordpress and buddypress.
https://wordpress.org/extend/plugins/external-database-authentication/
When a user logins, it checks my “other” database for the username, and validates the password against it. This means they don’t need to do the e-maiil thing, as their e-mail was already validated on the old site. It then creates the user in wordpress and the user doesn’t notice anything.
How you could do this for your friends, just make a table of all the friends, and set the same password for everyone initially, and ask them to change it. I only suggest this for very small beta sites with friends you trust, like less then 10 people.
Brad
January 9, 2009 at 4:36 pm #35965In reply to: News Control
yu
Participantchange function in bp-blogs/bp-blogs-classes.php ->
function get_latest_posts( $blog_id = null, $limit = 5 ) {
global $wpdb, $bp;
if ( $blog_id )
$blog_sql = $wpdb->prepare( " AND p.blog_id = %d", $blog_id );
$post_ids = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT p.post_id, p.blog_id FROM " . $bp['blogs']['table_name_blog_posts'] . " p LEFT JOIN {$wpdb->base_prefix}blogs b ON p.blog_id = b.blog_id WHERE b.public = 1 AND b.deleted = 0 AND b.archived = '0' AND b.spam = 0 AND b.mature = 0 $blog_sql ORDER BY p.date_created DESC LIMIT $limit" ) );
for ( $i = 0; $i < count($post_ids); $i++ ) {
$posts[$i] = BP_Blogs_Post::fetch_post_content($post_ids[$i]);
}
return $posts;
}to
function get_latest_posts( $blog_id = null, $limit = 5 ) {
global $wpdb, $bp;
if ( $blog_id )
$blog_sql = $wpdb->prepare( " AND p.blog_id = %d", $blog_id );
$post_ids = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT p.post_id, p.blog_id FROM " . $bp['blogs']['table_name_blog_posts'] . " p LEFT JOIN {$wpdb->base_prefix}blogs b ON p.blog_id = 1 WHERE b.public = 1 AND b.deleted = 0 AND b.archived = '0' AND b.spam = 0 AND b.mature = 0 $blog_sql ORDER BY p.date_created DESC LIMIT $limit" ) );
for ( $i = 0; $i < count($post_ids); $i++ ) {
$posts[$i] = BP_Blogs_Post::fetch_post_content($post_ids[$i]);
}
return $posts;
}Note this part
ON p.blog_id = 1
– this is blog ID you want to see on your front page & news.January 7, 2009 at 5:29 pm #35823Anonymous User 303747
Inactivegerbilo, I owe you one. Perfect!
In summary – objective was to limit the output in the Recent Blog Posts widget to only a few selected (in my case self-owned) blogs.
Edit bp-blogs-classes.php:
Replace:
$post_ids = $wpdb->get_results( $wpdb->prepare( "SELECT p.post_id, p.blog_id FROM " . $bp['blogs']['table_name_blog_posts'] . " p LEFT JOIN {$wpdb->base_prefix}blogs b ON p.blog_id = b.blog_id WHERE b.public = 1 AND b.deleted = 0 AND b.archived = '0' AND b.spam = 0 AND b.mature = 0 $blog_sql ORDER BY p.date_created DESC LIMIT $limit" ) );
With
$post_ids = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT p.post_id, p.blog_id FROM " . $bp['blogs']['table_name_blog_posts'] . " p LEFT JOIN {$wpdb->base_prefix}blogs b ON p.blog_id IN (1,2) WHERE b.public = 1 AND b.deleted = 0 AND b.archived = '0' AND b.spam = 0 AND b.mature = 0 $blog_sql ORDER BY p.date_created DESC LIMIT $limit" ) );
In my example, I use blog_id 1 and blog_id 2.
I don’t like hacking the code, so if there’s anyone who knows to get this done by putting it in the mu-plugins directory and leave the BP code untouched, I’d be interested in learning about it.
Thanks again, gerbilo!
January 7, 2009 at 8:15 am #35795Anonymous User 303747
InactiveIn times of desperation, the brutal way trumps anything else
function get_latest_posts( $blog_id = null, $limit = 5 ) {
global $wpdb, $bp;
if ( $blog_id )
$blog_sql = $wpdb->prepare( " AND p.blog_id = %d", $blog_id );
$post_ids = $wpdb->get_results( $wpdb->prepare( "SELECT p.post_id, p.blog_id FROM " . $bp['blogs']['table_name_blog_posts'] . " p LEFT JOIN {$wpdb->base_prefix}blogs b ON p.blog_id = b.blog_id WHERE b.public = 1 AND b.deleted = 0 AND b.archived = '0' AND b.spam = 0 AND b.mature = 0 $blog_sql ORDER BY p.date_created DESC LIMIT $limit" ) );
for ( $i = 0; $i < count($post_ids); $i++ ) {
$posts[$i] = BP_Blogs_Post::fetch_post_content($post_ids[$i]);
}
return $posts;
}That’s the function. What would need adjustment here?
December 31, 2008 at 7:13 pm #35390In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
cdaniel09
ParticipantI am having issues with recaptcha on signup after an upgrade.
I have all new recaptcha plugin installed, new BP, WPMU 2.6.5., new recaptcha key.
When I register with recaptcha on it loops between initial sigup page and blog title page.
Turn off recaptcha , all is good.
Need recaptcha , I get way too much spam signups.
Any ideas?
December 29, 2008 at 8:36 pm #35289In reply to: Require Login
bluocean
MemberAlrighteethen, I’ve given up on a reg form on a custom login page.
Even simpler, from a code standpoint is a message on the login page that says “This is a private site. To join, please email the site administrator.” with a spam-proof mailto link. I can then manually sign them up. Pretty clunky, but it sounds like BP will be better at this kind of thing someday soon.
December 24, 2008 at 9:27 pm #35038In reply to: 3rd parts Plugin Directory on BuddyPressDEV
Slava Abakumov
ModeratorNothing in spam-folder (I did this several times). Be waiting…
December 24, 2008 at 7:39 pm #35028In reply to: 3rd parts Plugin Directory on BuddyPressDEV
nicolagreco
ParticipantslaFFik, i’m working on it now.. check your spam, i will activete your account..
December 23, 2008 at 2:58 pm #34905In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
David Bisset
ParticipantI highly recommend something like this, especially for signups. Spammers target MU blogs to auto-register and then auto-create/post blogs.
December 15, 2008 at 5:52 am #34403In reply to: activation email / new users
Burt Adsit
ParticipantI’ve had a problem similar to #1. The email is actually sent but the recipient’s email server just blocks it. They never get it. It doesn’t get sent to ‘spam’ like gmail or yahoo. They just don’t get it at all.
hotmail
Right? Try complaining to Microsoft.
Burt Adsit
ParticipantYou don’t
EDIT: That was a bit harsh. I don’t know any way of doing that. I don’t think I want people to be allowed to do that. Spam city. I can have a 1000 junk blogs by somebody generating 1000 emails? No thanks.
ron_r
MemberOne of the issues with this would be that spammers could create their own BP sites and gain access to hundreds of other sites.
-
AuthorSearch Results