Search Results for 'spam'
-
AuthorSearch Results
-
April 30, 2017 at 12:42 pm #265734
In reply to: Custom Post Type Tracking
Nahum
Participantwell I was trying post the my code, but I think I spammed myself after trying to edit the reply to this …
CPT (and custom title thing)add_action('init', 'video_register_my_cpt'); function video_register_my_cpt() { register_post_type('video', array( 'label' => 'Videos', 'description' => 'Latest Videos', 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_nav_menus' => false, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => array('slug' => 'videos'), 'query_var' => true, 'has_archive' => true, 'exclude_from_search' => false, 'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes','buddypress-activity'), 'bp_activity' => array( 'component_id' => buddypress()->blogs->id, 'action_id' => 'new_video', 'format_callback' => 'bp_blogs_format_activity_action_new_blog_post', 'comment_action_id' => 'new_video_comment', 'comment_format_callback' => 'bp_activity_format_activity_action_custom_post_type_comment', 'contexts' => array( 'activity', 'member' ), 'position' => 40, ), 'taxonomies' => array('video_category','video_tag'), 'labels' => array( 'name' => 'Videos', 'singular_name' => 'Video', 'menu_name' => 'Videos', 'add_new' => 'Add Video', 'add_new_item' => 'Add New Video', 'edit' => 'Edit', 'edit_item' => 'Edit Video', 'new_item' => 'New Video', 'view' => 'View Video', 'view_item' => 'View Video', 'search_items' => 'Search Videos', 'not_found' => 'No Videos Found', 'not_found_in_trash' => 'No Videos Found in Trash', 'bp_activity_admin_filter' => __( 'New video published', 'custom-domain' ), 'bp_activity_front_filter' => __( 'Videos', 'custom-domain' ), 'bp_activity_new_post' => __( '%1$s added <a href="%2$s">[Video]</a>', 'custom-domain' ), 'bp_activity_new_post_ms' => __( '%1$s added <a href="%2$s">[Video]</a>','custom-domain' ), 'bp_activity_comments_admin_filter' => __( 'Comments about video', 'custom-domain' ), // label for the Admin dropdown filter 'bp_activity_comments_front_filter' => __( 'Video Comments', 'custom-domain' ), // label for the Front dropdown filter 'bp_activity_new_comment' => __( '%1$s commented on a <a href="%2$s">video</a>', 'custom-domain' ), 'bp_activity_new_comment_ms' => __( '%1$s commented on a <a href="%2$s">[Video]</a>, on the site %3$s', 'custom-domain' ) ) ) ); } function my_video_include_post_type_title( $action, $activity ) { if ( empty( $activity->id ) ) { return $action; } if ( 'new_video' != $activity->type && 'new_video_comment' !=$activity->type ) { return $action; } preg_match_all( '/<a.*?>([^>]*)<\/a>/', $action, $matches ); if ( empty( $matches[1][1] ) || '[Video]' != $matches[1][1] ) { return $action; } $post_type_title = bp_activity_get_meta( $activity->id, 'post_title' ); if ( empty( $post_type_title ) ) { switch_to_blog( $activity->item_id ); $post_type_title = get_post_field( 'post_title', $activity->secondary_item_id ); // We have a title save it in activity meta to avoid switching blogs too much if ( ! empty( $post_type_title ) ) { bp_activity_update_meta( $activity->id, 'post_title', $post_type_title ); } restore_current_blog(); } return str_replace( $matches[1][1], esc_html( $post_type_title ), $action ); } add_filter( 'bp_activity_custom_post_type_post_action', 'my_video_include_post_type_title', 10, 2 );BP CUSTOM
/*////////////////////////////////////////////////////////////////////////////////////////////*/ // Modifying CPT Activity Actions /*///////////////////////////////////////////////////////////////////////////////////////////*/ function record_blogpost_activity_action( $activity_action, $post, $post_permalink ) { global $bp; if( $post->post_type == 'jobs' || get_post_type($post->ID) == 'jobs' ) { $activity_action = sprintf( __( '%1$s', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>'); } elseif( $post->post_type == 'video' || get_post_type($post->ID) == 'video' ) { $activity_action = sprintf( __( '%1$s posted a video', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); } elseif($post->post_type == 'post' ) { $activity_action = sprintf( __( '%1$s posted a blog', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); } return $activity_action; } add_filter('bp_blogs_activity_new_post_action', 'record_blogpost_activity_action', 11, 3); /*////////////////////////////////////////////////////////////////////////////////////////////*/ // Modifying CPT Comment Activity Actions /*///////////////////////////////////////////////////////////////////////////////////////////*/ function comment_activity_action( $activity_action, $post, $post_permalink ) { global $bp; if( $post->post_type == 'post' ) { $activity_action = sprintf( __( '%1$s commented on %2$s', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); } elseif( $post->post_type == 'video' || get_post_type($post->ID) == 'video' ) { $activity_action = sprintf( __( '%1$s replied on the video %2$s', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '<a href="' . esc_url( $post_permalink ). '">' . $post->post_title . '</a>' ); } return $activity_action; } add_filter('bp_blogs_activity_new_comment_action', 'comment_activity_action', 11, 3); /*//// ? /////*/ function bbg_record_video_post_type_comments( $post_types ) { $post_types[] = 'video'; return $post_types; } //add_filter( 'bp_blogs_record_post_post_types', 'bbg_record_video_post_type_comments' ); //add_filter( 'bp_blogs_record_comment_post_types', 'bbg_record_video_post_type_comments' );doing it this way, everything works except my custom comment action.
March 30, 2017 at 2:06 am #265075psnation
ParticipantI suggest Wordfence. It eliminates spam accounts from even signing up. It works great.
March 6, 2017 at 6:02 pm #264531In reply to: Not getting BuddyPress registration emails
tonkymm
ParticipantNo. They are not in spam. My coworker contacted WPMU dev support and they seemed to not be able to send BuddyPress emails either. WordPress emails work, i.e. forgot password and registration through wordpress works.
https://premium.wpmudev.org/forums/topic/buddypress-emails-are-not-working
March 2, 2017 at 4:37 pm #264458In reply to: Not getting BuddyPress registration emails
Henry Wright
ModeratorAre you sure the emails aren’t being sent? Could the BP emails be going into a spam folder?
March 2, 2017 at 6:43 am #264444In reply to: How to delete automatic message
Dominic Bowkett
Participantyou can mark them spam to delete it.
February 24, 2017 at 7:49 am #264118In reply to: hide members from search results
djsteveb
Participant@johanna75 – We do need some kind of universal “display public ok” field perhaps?
Some people have fields set to ‘friends only’ – so things in search should only display to them.
Bp has a thing in it when a user is marked as spam, then they are only visible to admins – so I think this kind of functioning is half in there already.
Would be nice for the buddyblock and rtmedia plugins to also consider this visibility thing, and for buddyblock to be able to conditionally affect that as well.
I could see the need for someone to hide certain things from the public and from specific people – what a nightmare it is when things that were assumed secret pop up in search results.. I had this happen with a wp install – pages published but password protected – well either the theme, or the post teaser plugin pulled data from those non public pages and put them smack in the public search results.
Luckily the bp profile search pluing (that I also use – it’s great!) – is under active development – (I see the author has responded to the support forum on wp repo saying it is an issue that is under consideration, but bp does the same thing – so it’s no different in the privacy regard) wonder if we could ping the other bp peeps and rtmedia and buddyblock peeps tp put some heads together on this..
I have a similar problem right now with rtmedia not meshing with buddyblock. When a user blocks and enemy on my site – that enemy can not message them or comment on their activity – but they can harass the sh*t out of them via comments on their media.
February 22, 2017 at 4:55 am #264032In reply to: spam registration
psnation
ParticipantI use Wordfence and CleanTalk and my spam is practically nothing. Very rarely does it let them through.
February 22, 2017 at 3:33 am #264025In reply to: spam registration
djsteveb
Participant@malaruban – did you search the forum for this? It’s answered like very month since the beginning I think..
everyone has different suggestions..
1 many suggest “wp spamshield”
2 I like “good question” plugin on one site, but use “buddypress humanity” on another..
one I’ve considered replacing those wit his “user registration aid”3 I also use ip geo block – biggest help on most sites.
4 strongly suggest getting the “shield” firewall plugin and going into lockdown menu and disabling xmlrpc and rest api – but your situation may vary.
I use all four plus more on various sites (just one of them from step 2)
February 6, 2017 at 1:07 pm #263551In reply to: Basic BuddyPress Demonstration
Paul Wong-Gibbs
KeymasterWe used to have testbp.org which last a few years until spam and DOS attacks forced us to take it offline.
Your best best is probably looking through https://wordpress.tv/tag/buddypress/ for recent WordCamp videos, and see if you can find one.
February 6, 2017 at 6:09 am #263533In reply to: Do you even optimize bro?
djsteveb
Participant@januzi_pl – how many members are there?
Are there strong anti-spam / anti-bot sign up measures in place? not a captcha – something like “good question” or other answer correct question to get through kind of thing.
using wp spmshield or some kind of akismet type thing?
I don’t have the kind of graph you show there – but I can say I saw a HUGE difference.. back in the day we had tons of bots signing up for new accounts, sending pms to other users, and all kinds of activity that was not obvious on the front end to the average visitor or site admin.. only after a few complaints and some digging did I realize that 90% of server resources were being sucked away by bot registrations / spammers, and bots that were crawling for the various “search engines” – once you get a hold on those things, then it’s good to know how many users you have and if they are active all day and night or just certain times of the day and such..
January 31, 2017 at 5:45 pm #263380In reply to: Is Buddy Press for me?
djsteveb
Participant@rickaltman – I think buddypress can do most of what you describe here right out of the box. I would search for forum threads and maybe plugins to have your members auto join a group –
this would give you something like “your site dot com / groups / mainGroupName / members
for this kind of list – although it would be a list rather than grid system – you may find another way to do it, but it’s probably gonna take some hacking-up things to get the grid layout if you really want that – I’d try to find something less robust – like maybe just the wpmudev membership2 plugin in the wp repo – and hackup a page to list authors with a wp theme or something…bp can do a profile pic.. but it needs plugins to really “upload photos” – and that’s a can of worms in which some is over-baked, some under baked, and future possibilities are endless.. some built in bp hooks have been made a while back but.. well not sure what meant exactly by “upload photos” –
its going to be much easier to get community support for regular wordpress themes and such.. buddypress is probably a lot more power than your use case is gonna need.. and with that is gonna be spam issues – virtually no support for customizing anything.. even if you knew php really well, you’d have learn wordpress well, and then try to digest all the BP docs and sort through tracs.. gits.. and other random stuff on the web that is not well documented, no well supported, and leaves you wondering if it’s secure… and the chances of all the various hackedup things working well together is blah… and future updates – hahaha.. who knows that is going to happen.
In your situation I’d say it wouldn’t hurt to play around with BP – as it’s free.. but if it doesn’t do what you want out of the box.. then I would delete it all – and try a basic wordpress with members plugin.. maybe even just a ‘multi-author blog” – you’ll get less spam, and much less work.
Others may think / feel differently about all this, my experience comes from my issues – your mileage may vary..
January 28, 2017 at 9:45 pm #263254In reply to: Spam via messages.
Anonymous User 357386
InactiveIll try to try spamshield, but this is the most bad experience as possible with a plugin.
Warning in log > update = error 500, every release more bugged than before (check support topic and u can see a lot of reqwuest for many website offline for this plugin).no, thanks, i need/prefer something of more stable 🙂
January 22, 2017 at 9:28 am #263078In reply to: Spam via messages.
djsteveb
Participantsomething like the https://buddydev.com/plugins/bp-private-message-rate-limiter/ may be helpful if you really want to stop 99.9% of it.. that one is premium / costs $19.. but it’s more of a hindrance to the spammers than just the spamshield.. which I use and think it stops 90% of them.. so is the other 9.9% worth the premium.. situations vary..
January 19, 2017 at 3:50 pm #263014In reply to: Spam via messages.
danbp
ParticipantJanuary 12, 2017 at 8:54 pm #262784In reply to: Need Advice for Stopping Spam at the Gate
Red Sand Media Group
ParticipantHi @djsteveb:
Thanks for the awesome feedback! We always want to improve the plugin. If you could contact us via our support form, it would allow us to look into that. With a little modification on our end we should be able to auto-detect, and make it so no one has to tweak any settings.
– Scott
January 11, 2017 at 11:28 pm #262761In reply to: Need Advice for Stopping Spam at the Gate
djsteveb
Participantip geo block plugin best dam thing ever.
shield firewall plugin just to disable xmlrpc or a disable xmlrpc plugin
“good question” (https://wordpress.org/plugins/good-question/) or similar – adds a question that must be answered to finish registering
wp spmashield
limit login attempts
sucuri hardening
audit log and multisite register ips (for the manual dedicated spammers)
this mix seems to make like tough for them – especially the ip geo block stopping several countries from abusing the site..
ymmv
dj Steveps
@redsand – good to see you active in bp threads! your plugin is a miracle, especially since akismet changed – one on bp site I did have to fiddle with the settings for forms or something recently – vaguely remember users having trouble sending pms were getting the you cant do that permissions thing until I messed with it a bet.. just like 2 weeks ago.January 11, 2017 at 5:15 pm #262754In reply to: Need Advice for Stopping Spam at the Gate
Red Sand Media Group
ParticipantWP-SpamShield will take care of all of that for you. 🙂
Full disclosure: I’m the developer.
January 3, 2017 at 8:36 am #262508donburikun
ParticipantThank you for your reply and solution. It would be great however if an option for this was officially implemented in Buddypress as it is an issue that allows malicious users to spam many users in one shot.
December 12, 2016 at 5:59 pm #262044In reply to: Edit the Buddy Press Pages View
modemlooper
ModeratorThere are some plugins, do a google search.
you can also use this code but you will get spam if they can get in without email conformation.
add_filter( 'bp_registration_needs_activation', '__return_false' );November 29, 2016 at 8:44 pm #261509In reply to: how to change @ mention name
Venutius
ModeratorI’m a bit uncertain about allowing users to change their Usernames, it means they lose connections with the past in so much as the activity table is static so the name does not change on past activity items and this throws some errors, also I think it may make the admin anti spam task harder, users posting stuff then changing their login name.
November 24, 2016 at 11:22 am #261316In reply to: How to remove spam registers?
ethernity4ever
ParticipantI suggest an anti spam plugin, the one im using is cleantalk
November 8, 2016 at 3:28 am #260827In reply to: How to Turn Off Email Notifications for All Users
Red Sand Media Group
ParticipantHi @Tranny,
Trust me, I completely hear you. You’re right. Ideally anti-spam controls like that should be built-in.
Those are great suggestions. We’ll take a hard look at possibly including those features in future versions of WP-SpamShield as well. One thing you’ll find by using a plugin like WP-SpamShield is that it will block 100% of bots, and it will prevent most human spammers from even registering (which keeps them from even getting to a place where they can spam other users), and it will make it difficult for them to post their spammy messages.
Let us know if we can help in any way.
– Scott
November 8, 2016 at 3:21 am #260826In reply to: How to Turn Off Email Notifications for All Users
Tranny
ParticipantHey Scott @redsand
Thank you for your message. I’m gonna take a look at the plugin you have suggested. I’m still hoping that BP developers will implement basic features that would help in countering spam. Some such features would be:
1 – Ability to turn off email notifications for all existing users, and choose a default setting for new users
2 – Ability to set a limit on how many members can be tagged per post
3 – Ability to set a limit on how many friendship connections can a member make per day, and the ability to set after how many pending friendship requests the member can’t make any more requests
4 – Ability to set a period in days after registration, during which a newly registered member will not be able to tag anyone or make friendship connections
5 – Ability to force moderation on BP related posts similar to WP core, whereby a post would be held in moderation unless a user has an approved postFeatures like that would most certainly be welcome by owners of larger sites, and probably by owners of smaller sites too. They can be frequently encountered in other scripts.
I do realize that fighting spam is a neverending battle, but features I’ve been talking about would make a significant impact on a webmaster’s ability to reduce it, especially since right now BP doesn’t have anything to mitigate it in any way.
November 8, 2016 at 2:31 am #260824In reply to: How to Turn Off Email Notifications for All Users
Red Sand Media Group
ParticipantHey @danbp
I just thought I’d jump in here real quick, as I think this will be beneficial to everyone in the thread including @Tranny.
And even if you would be a genius coder creator of an extra super original spam shield, you could be sure to became target #1 of all spammers, because in this case, you would represent the absolute challenger of all code breakers !
We are that “genius coder creator of an extra super original spam shield” that you speak of. 🙂
There is no miraculous plugin or trick to stop them.
Ahh, but there is.
It’s real, and it’s even called WP-SpamShield. LOL…you can’t make this stuff up. 🙂
Check it out on WPorg. It’s been out for about two and a half years, and is forked from another plugin we developed almost a decade ago. It works perfectly and automatically on BuddyPress, bbPress, and pretty much everything else. You can also feel free to check out the plugin documentation here.
…And for the record, we definitely are a huge target of spammers. 🙂
dealing with spammers is a long run work, to not say a never ending work.
True story!
– Scott
November 2, 2016 at 10:16 am #260647In reply to: Mailing Users by posting an Sitewide Notice
casttime
ParticipantHello Venutius,
thank you for the fast reply. Now I use “Mass Messaging in BuddyPress” and it worked fine.
Unfortunately, most Users have the problem that the emails end up in their spam folder. -
AuthorSearch Results