Search Results for 'spam'
-
AuthorSearch Results
-
August 26, 2015 at 3:00 pm #243646
In reply to: Create Function When Favorite Button Clicked
bfchris2
Participant@henrywright…javascript *is enabled yes.
What I’m wanting to do, is duplicate those buttons with a new function close to how is_spam functions where it writes a “1” to a row in a db table. I can add the buttons in /activity/entry.php etc..but just need to know how exactly/where to copy the is_spam functionality and where to add to fire off a “replica”. if that makes sense.August 26, 2015 at 2:59 pm #243645In reply to: Create Function When Favorite Button Clicked
Henry Wright
ModeratorSo, is that how the spam or favorite/un favorite buttons work?
Maybe. It will depend if you have JavaScript enabled in your browser. If you do, then Ajax will be working. If you don’t, it’s likely the traditional
POSTorGETmethods will be in operation.August 26, 2015 at 12:18 pm #243638In reply to: Create Function When Favorite Button Clicked
bfchris2
ParticipantSo, is that how the spam or favorite/un favorite buttons work?
And how about the functions?
Chris
August 24, 2015 at 3:43 pm #243538In reply to: Add New User Activity on Button Click
coffeywebdev
ParticipantTake a look at this code, I think it may be helpful for you…
I created a function vp_add_group_activity_comments() that hooks to the ‘post_comment’ action, so when a user posts a comment an activity stream item is created and added to their group’s feed.. (on my site users can only be in one group at a time)
It’s all about what you set for the $args array….
function vp_add_group_activity_comments($comment_id){ $comment = get_comment( $comment_id ); GLOBAL $wpdb; $user_id = get_current_user_id(); $user_info = get_userdata( $user_id ); $current_user_group_id = $wpdb->get_var("SELECT group_id FROM ".$wpdb->prefix."bp_groups_members WHERE user_id = '".(int)$user_id."'"); $comment_action = "<a href='".site_url()."/members/".$user_info->user_login."'>".$user_info->first_name." ".$user_info->last_name."</a> posted a comment on <a href='".get_permalink($comment->comment_post_ID )."'>".get_the_title($comment->comment_post_ID)."</a>"; // arguments to pass to the bp_activity_add() function $args = array( 'action' => $comment_action, // The activity action - e.g. "Jon Doe posted an update" 'content' => $comment->comment_content, // Optional: The content of the activity item e.g. "BuddyPress is awesome guys!" 'component' => 'groups', // The name/ID of the component e.g. groups, profile, mycomponent 'type' => 'activity_update', // The activity type e.g. activity_update, profile_updated 'primary_link' => get_permalink($comment->comment_post_ID ), // Optional: The primary URL for this item in RSS feeds (defaults to activity permalink) 'user_id' => $user_id, // Optional: The user to record the activity for, can be false if this activity is not for a user. 'item_id' => $current_user_group_id, // Optional: The ID of the specific item being recorded, e.g. a blog_id 'secondary_item_id' => $comment->comment_ID, // Optional: A second ID used to further filter e.g. a comment_id 'recorded_time' => bp_core_current_time(), // The GMT time that this activity was recorded 'hide_sitewide' => 0, // Should this be hidden on the sitewide activity stream? 'is_spam' => 0, // Is this activity item to be marked as spam? ); $add_activity = bp_activity_add($args); // Update the group's last activity groups_update_last_activity( $current_user_group_id ); return true; } add_action('comment_post', 'vp_add_group_activity_comments' );August 24, 2015 at 3:38 pm #243537In reply to: Post comments not appearing in activity stream?
coffeywebdev
ParticipantTake a look at the code below to see how I use the post_comment action to hook my function vp_add_group_activity_comments(), which creates an activity stream item when a user posts a comment and adds it to their group’s activity stream… This is just what we are doing for our site, but if you look at the code you should be able to figure out how to do it for your site….
function vp_add_group_activity_comments($comment_id){ $comment = get_comment( $comment_id ); GLOBAL $wpdb; $user_id = get_current_user_id(); $user_info = get_userdata( $user_id ); $current_user_group_id = $wpdb->get_var("SELECT group_id FROM ".$wpdb->prefix."bp_groups_members WHERE user_id = '".(int)$user_id."'"); $comment_action = "<a href='".site_url()."/members/".$user_info->user_login."'>".$user_info->first_name." ".$user_info->last_name."</a> posted a comment on <a href='".get_permalink($comment->comment_post_ID )."'>".get_the_title($comment->comment_post_ID)."</a>"; // arguments to pass to the bp_activity_add() function $args = array( 'action' => $comment_action, // The activity action - e.g. "Jon Doe posted an update" 'content' => $comment->comment_content, // Optional: The content of the activity item e.g. "BuddyPress is awesome guys!" 'component' => 'groups', // The name/ID of the component e.g. groups, profile, mycomponent 'type' => 'activity_update', // The activity type e.g. activity_update, profile_updated 'primary_link' => get_permalink($comment->comment_post_ID ), // Optional: The primary URL for this item in RSS feeds (defaults to activity permalink) 'user_id' => $user_id, // Optional: The user to record the activity for, can be false if this activity is not for a user. 'item_id' => $current_user_group_id, // Optional: The ID of the specific item being recorded, e.g. a blog_id 'secondary_item_id' => $comment->comment_ID, // Optional: A second ID used to further filter e.g. a comment_id 'recorded_time' => bp_core_current_time(), // The GMT time that this activity was recorded 'hide_sitewide' => 0, // Should this be hidden on the sitewide activity stream? 'is_spam' => 0, // Is this activity item to be marked as spam? ); $add_activity = bp_activity_add($args); // Update the group's last activity groups_update_last_activity( $current_user_group_id ); return true; } add_action('comment_post', 'vp_add_group_activity_comments' );August 22, 2015 at 1:12 am #243477In reply to: Good group chat plugin for bp?
djsteveb
Participant@atfpodcast – quick chat is working 24/7 on my busiest bp site with 11,000 members.. only thing that screws up that page is when rtmedia has an update the screws with permalinks (messes up all of my static “pages” – have to change and resave.. but that is an issue with rtmedia and permalinks – nothing to do with quickchat.. it works fine and I deploy it on different sites in different ways. I did some write up about it on one of the comment threads I originally linked to in the first response to the original post I think..
anyhow, I think quickchat is the perfect text-chat plugin for a small web site that does not hammer the chat system with hundreds of simultaneous users.
It does chat, avatars, bad words filter, admin can delete stuff – it’s quite the package – I wish the original dev would of answered my emails offering some paid enhancements.. but it’s fine as it is. I did a long write up on one site talking about the drawbacks of ANY chat system that hooks into sql – but I doubt most people will run into those issues until they get more than 20 or so same-time chatters – that’s when you start to look at things to limit sql requests to keep your server from choking – which is usually more of an issue with robots and scrapers and brute force login stuff – comment spam – all that.. guess that’s more of a slightly different discussion – lol.
August 20, 2015 at 4:28 am #243410In reply to: Cant activate pending accounts
DJ9
ParticipantYes buddypress is on both pages, I control both pages through 1 cpanel, and yes I can activate 1 at a time, the bulk is what is not working. I always have had pending since I started my page and the bulk activate use to work just fine. I have separate plugin ins to catch spammers and spam. I only use the settings buddypress comes with, no mods at all.
August 19, 2015 at 11:42 pm #243407In reply to: Cant activate pending accounts
danbp
ParticipantHave you installed both site on a same or separate WordPress, and same question about BuddyPress ?
Another question about 3500 pending request.
Are you sure these aren’t spammers ? Why are they pending ? Have you setup this behave or is it a sudden amount of registerer ?
Can you activate one account at time ? Or is only bulk activation defect ?
August 10, 2015 at 9:04 am #242952In reply to: requesting codex edit capability
Hugo Ashmore
Participant@bobbingwide Existing user accounts should have edit capability, it was only newer accounts where we needed to manage the spam activity, so if you could try editing a page and let us know if you are having issues.
August 8, 2015 at 8:00 pm #242915In reply to: Let moderators mark members as spam
Shaktimaan
ParticipantIf moderators could mark members as spam on front-end, it is also acceptable.
But Moderator (test user) with list_user capability can’t see this option on front-end.
If he clicks on settings, there should be a link Capabilities on user profile. But there is no Capabilities link.
August 8, 2015 at 7:29 pm #242914In reply to: Let moderators mark members as spam
shanebp
Moderator>If moderator could mark a member as spam only via dashboard, i am ok with it.
Due to the
current_user_cancheck, afaik it is not possible via dashboard unless you hack core files.August 8, 2015 at 7:09 pm #242913In reply to: Let moderators mark members as spam
Shaktimaan
ParticipantMembers can also be marked as spammers via the front-end.
Moderator (test user) with list_user capability can see spam option on Back-end/dashboard but he can’t see this option on front-end.
As an admin i can mark a member as spam on front-end also.
If moderator could mark a member as spam only via dashboard, i am ok with it.
I am not a coder. Can you help me? How to edit it to achieve desired results? Is there a code that i can add in functions.php?
I want this for 2 /users/moderators.
August 8, 2015 at 6:34 pm #242912In reply to: Let moderators mark members as spam
shanebp
Moderator>I think spam and extended features have been added by buddypress therefore i am asking here.
Sorry, my mistake.Before adding the ‘spam’ link BP checks to see if
current_user_can( 'edit_user', $user_id )Members can also be marked as spammers via the front-end.
Take a look at :
\bp-templates\bp-legacy\buddypress\members\single\settings.php
You might be able to adjust it to check for a cap of your choice.August 8, 2015 at 6:20 pm #242911In reply to: Let moderators mark members as spam
Shaktimaan
Participantedit_users capability will let them do many other things that i don’t want.
I think spam and extended features have been added by buddypress therefore i am asking here.
I have a blog where i am not using buddypress plugin. I don’t see spam and extended option there.
August 6, 2015 at 12:44 pm #242838In reply to: page dashboard goe away
danbp
Participant@nasongo,
Over 16.700 groups with only 2 having 4 members and 99% having 1 member, looks to me like your members are allowed to publish anything without control.Group content is a huge collection of external links, and of what i’ve seen not very related to your site (The worlds Premier Staffing Solution).
Have you being spammed recently ?
August 6, 2015 at 1:34 am #242819In reply to: Is it possible to make a custom Home page?
djsteveb
Participantthere are several wp plugins that can redirect a user upon login to specific pages.
I can’t put more than two links in a reply without getting moderation held / akistmet spammed.not sure if / how this works – seen it – never played with it:
https://wordpress.org/plugins/bp-my-home/might also take a peek if these can updated / adapted..
https://wordpress.org/plugins/bp-profile-widgets/BuddyPress Cover
Content Aware Sidebarsseveral others – now do any of these work with the current version of wp / bp ? I don’t know.
Do they work with the default theme and then cause issues if a different theme was used? don’t know.Do they cause conflicts with other plugins? have not tested.
August 4, 2015 at 11:18 am #242771mycru.io
ParticipantOh I found the error.
I banned a special domain during the registration process like @xyz.com
users with this email domain are not supposed to sign up at my website,
what i didn’t knew is that all members who previously signed up with an email like that
got black listed. It means they where posting and than the system was removing their posts like spam !July 22, 2015 at 2:00 am #242105In reply to: Can I give users project pages?
djsteveb
Participant@ravan – I would think multi-site is the best way to go for this. Use like a new-blog-defaults plugin to auto make their new sites a certain theme and have pre-populated content to make it easy.
Of course you would setup a single site blog, give each new user editor privelages and manually create a page for each person.. I did that once.. I think the way multi-site seperates things is a little less messy – and a “full blown multi-site” is not that big a deal these days – back in the early wpmu days it was a lot – these days adding the couple lines of code and telling wp to put the new blogs -err “sites” into a subfolder is not much to deal with.
I have found as long as you use a blog defaults plugin to set a bunch of settings for each one automatically (users must be logged in to comment) – stuff like that – you can save server resources and not have to worry too much about users who are not paying attention to comments spam and the like.
July 16, 2015 at 4:35 pm #241912In reply to: [Resolved] Mass-deleting Buddypress groups?
COOLBEANSDUDE
ParticipantProblem with that is that you can only delete groups 20 at a time. The spam got bad, I have over 4000 spam groups and I need them all to go at once, I don’t exactly have time to repeat the same process over 200 times. I was asking about a measure to get rid of all of them at once.
July 16, 2015 at 3:57 pm #241906In reply to: [Resolved] Mass-deleting Buddypress groups?
COOLBEANSDUDE
ParticipantThat’s massively outdated and doesn’t work, and I put the anti-spam into place after I noticed this and it works great. But that organizer is for very, very old versions of buddypress.
July 16, 2015 at 3:36 pm #241902In reply to: [Resolved] Mass-deleting Buddypress groups?
sharmavishal
ParticipantThis works for me
https://wordpress.org/plugins/bp-group-organizer/Your anti spam not working use stop spam control plugin
July 16, 2015 at 3:28 pm #241900In reply to: [Resolved] Mass-deleting Buddypress groups?
COOLBEANSDUDE
ParticipantI have anti-spam set up now, but I can’t find a good group organizer!
July 16, 2015 at 3:26 pm #241899In reply to: [Resolved] Mass-deleting Buddypress groups?
sharmavishal
ParticipantGroup organizer plugin maybe?
Also use anti spam plugin for registration
July 9, 2015 at 7:46 pm #241649In reply to: Why is my Forum Thread not here?
djsteveb
Participant@kakumeionline – if your post had three links in it – it will be held for moderation and not appear unless someone approves it.
If your post did not have three or more links in it – then I think akismet has flagged your ip addy as a spammer perhaps – and it got sent to the spam box.
Sometimes adding certain words like “how to add a field for users to choose their S3X, and if they are L3sbian, G@y Trans – will keep a post from saving I think.
Random thoughts from an end user – I don’t really know how the internals of this BP dot org really work (not a forum moderator or anything)
So these are my guesses
July 1, 2015 at 10:19 pm #241369In reply to: Stopping forum spam?
Daethian
ParticipantI have spam plug ins working and that keeps the spam registrations to a minimum. I don’t see blog comment spam either as I have that all turned off. These are forum posts and definitely not blog posts.
I’ll try Akismet
-
AuthorSearch Results