Search Results for 'spam'
-
AuthorSearch Results
-
February 21, 2013 at 2:01 am #153575
In reply to: How to control spam registration?
FunCaptchaParticipantHi all,
I’m the developer of FunCaptcha and we’ve just updated it to include full BuddyPress support. We’ve tested it on the latest version of BuddyPress and WordPress, as well as various earlier releases.
Just wanted to let you know that CAPTCHAs don’t all need to be painful! Users complete our FunCaptcha faster than other CAPTCHAs, with fewer frustrating failures and no typing. They work on all browsers and mobile devices, using HTML5 with a fallback to Flash. Visually impaired users can complete an audio challenge.
We have big plans for updates, new games and further additions to FunCaptcha. I’d love to hear from you guys what you want in it, how we can improve it for you, and help make your BuddyPress and FunCaptcha experience as enjoyable as possible!Please check us out!
Thanks,
Kevin Gosschalk
info@swipeads.coFebruary 20, 2013 at 7:10 pm #153528In reply to: spam messages! and error for delete my account.
Paul Whitener Jr.Participant1. spam messages!
I really like this plugin for managing spam registrations and comments:
https://wordpress.org/extend/plugins/stop-spammer-registrations-plugin/
Signing up for an Akismet key will also help with spam comments, as would requiring someone to create an account and login before doing so (in Settings: Discussion).
2. am using bp on my 3rd blog. somehow users can not delete theirโs account.
You can enable this in: Settings: BuddyPress: Settings (tab): Allow registered members to delete their own accounts
February 20, 2013 at 5:09 pm #153519In reply to: spam messages! and error for delete my account.
freeace00Participantany idea?
It keeps emailing ๐
today too. i kick he/her out. but still registered and sending.February 18, 2013 at 2:34 pm #153338In reply to: How do you tell if a user is spam or not?
Kevin M. SchaferParticipantOkay. Thanks @hnla. I’ll do that right now.
February 18, 2013 at 2:22 pm #153336In reply to: How do you tell if a user is spam or not?
Hugo AshmoreParticipantSpam!
You may get a fair bit of it, search the forum for topics on prevention.
February 18, 2013 at 12:36 am #153309In reply to: Full forum URL String in activity feed
@mercimeParticipant@dasped First, glad you resolved the first issue pm your own ๐
Second, by default you should as keymaster and even moderator, edit, close, stick, merge, trash or spam forum posts.
– Which kind of forum are you encountering the problem in? Group or Sitewide Forums?
– Did you follow the updated instructions for setting up Group/Sitewide Forums at https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/February 17, 2013 at 6:57 pm #153285In reply to: Full forum URL String in activity feed
daspedParticipantI can confirm that this issue was SQL related, A fresh install on clean database resolved the matter.
Just out of curiosity (I have posted on BBPress support) and on the off chance someone may have had the same/similar issue over this neck of the woods. Once a forum/group forum post is created, I’ as keymaster cannot, edit,close, stick, merge, trash or spam them? The page simply refreshes with no action taking place.
Fingers crossed, someone, somewhere has had and indeed resolved the matter.
February 16, 2013 at 9:12 pm #153223In reply to: How to Modify Admin Bar + activation email not going
@mercimeParticipanthow to modify the admin bar
@ebizdude That’s too wide an area to cover. What specifically do you want to change in the admin bar?
– If it’s WordPress-related, please post at https://wordpress.org/support/forum/how-to-and-troubleshooting
– If it’s related to BuddyPress links to profile menus https://wordpress.org/extend/plugins/buddypress-custom-profile-menu/also when people registerting the activation email is not coming. how does one recticfy that
You have to find out through some tests whether email is not being sent from your installation or whether the email just goes to user’s spam folder.
February 14, 2013 at 1:40 pm #153031In reply to: New users but not one confirms emails
FlipFl0pParticipantThanks for the suggestions guys. I will give the Honeypot Trap plugin a try as I believe you are all correct and it’s spam.
Think I’m going to go to BBpress forums only at first and then reintegrate Buddypress later as there’s a few too many complications with BP right now.
February 14, 2013 at 10:23 am #153028In reply to: New users but not one confirms emails
Roshan RoyParticipantYeah man,it’s probably spam..i had this problem then i activated a captcha plugin and i hoped for the best..it still didn’t work..so,i activated the honeypot trap.and that actually worked..just search for the buddypress captcha plugin
February 14, 2013 at 1:50 am #153020In reply to: New users but not one confirms emails
m.sunspiritParticipantin your word press dashboard on the “users” page you can select ‘page options’ near the top right and then show 200 results per page to make it easier to go through the users. I had this problem with a site and I would just ‘select all’ and then go through and un-select users that I knew were real people. . . Spam Sucks. . . Good Luck!
February 13, 2013 at 11:13 pm #153010In reply to: Akismet configured but not working
Ben HansenParticipantit works fine for me but it doesn’t catch all spam i think it’s still learning how to tell whats spam or not when it comes to activity. it’s not perfect for comments either but probably catches about 99% or so. i’d say the number with activity spam is still probably under 50% at least as far as i can tell.
February 13, 2013 at 5:07 am #152946In reply to: Moderate Everything
JustinParticipantWould there be a way to make all activity spam by default? Would that have repercussions with akismet and blacklisting – if it could even be done simply enough? The ideal would be to send all activity to moderation by default, but this idea might do until a better solution can be found.
February 11, 2013 at 6:18 am #152808omgbudParticipantHi,
this is a code I use personally, but requires you to edit the bp-groups-actions.php, sorry i do not know how to write function.
open buddypress/bp-groups/bp-groups-actions.php
around line 150
After this line:
`do_action( ‘groups_group_create_complete’, $bp->groups->new_group_id );`Add this code:
` $to = “YOUREMAILADDRESS”;
$name= bp_core_get_username(bp_loggedin_user_id());
$groupname = bp_get_new_group_name(bp_get_new_group_id());
$groupurl = bp_get_group_permalink( $bp->groups->current_group );
$subject = “$name created new group $groupname”;
$body = “$name created new group $groupname, visit $groupurl”;
mail($to, $subject, $body);
`That’s it, when a user hit the Finish create group button this code will send to the email stated address with the newly created group link. use at your own risk. Hope someone better can create a theme function or a plugin for this.
This is needed to keep track of newly created groups to alert you if spammers are creating groups to spam.
Hope it helps.
February 9, 2013 at 2:35 am #152701@mercimeParticipant@tuxkapono @tux-kapono Your account was blocked because: a) you posted a link to site which had numerous pop-ups when I checked it out and b) the link you posted had no direct relevance to the topics where you added the link. Those of course led to the conclusion that you were a spammer along with 7-8 other spammers I blocked around that time. We try to keep the forums as clean and free from spammers and spam as much as possible.
Given that you came back to explain your side, I have unblocked “Tux Kapono” and you may resume using it to post in BP forums.
February 4, 2013 at 11:59 pm #152397In reply to: how to override buddypress function using hook?
Mitesh PatelParticipantI finally yielded, and messed up (so to speak) the function messages_screen_compose, adding conditional custom redirects with if else statements like…
`
if(wp_get_referer()){//to check origin of form submission, returns false for self submission
bp_core_redirect(wp_get_referer()); //custom redirect, as this isn’t self submission
} else {
bp_core_redirect( bp_loggedin_user_domain() . $bp->messages->slug . ‘/view/’ . $thread_id . ‘/’ );// this was originally there, for submission from original php file
}
`As I think the issue is ‘resolved’, for time being, I should document the solution here.
I intended to use buddypress private messaging as feedback form, with various feedback options like Question, Suggestion, Feedback etc. Thus, I created corresponding users (Question, Suggestion, Feedback etc.) who will receive the feedback. The idea is super-elegant from my purpose, as not only the submissions be automatically segregated and stored in database, but responding to the feedbacks would be as simple as responding to PM, all without the hassle of email, spam etc. An added benifit is, users can draw attention to various issues site wide by @mension, like :@question What about this?”
So I tried to imitate the buddypress compose form, and I succeeded, except the redirect problem as described here.
https://buddypress.org/support/topic/create-a-feedback-form-using-buddypress-messaging-functionality/What I was doing was, creating a duplicate form, but calling the original form action (fooling buddypress ๐ ). I did so, because, I don’t even know how to submit the copy-pasted form I created, and get the same thing done as the original compose.php was doing when it called itself (self submission).
Anyways, this hack with unforgivable modifications in buddypress files works beautifully. I feel I’ll have to go through the plugin route finally though, as this is make-shift arrangement (but will work as long as I don’t update the buddypress plugin ๐ ).
Thanks shane for your help.
February 1, 2013 at 7:36 pm #152201In reply to: Not sending New User's password
resomParticipant@mercime Yes, I even made a fake user so I could check it myself to make sure it was not going to spam. No email came
February 1, 2013 at 7:13 pm #152196In reply to: Not sending New User's password
@mercimeParticipant@resom That’s right.
Have those who have not “received” activation emails checked their spam folders? Unfortunately, that happens even without BP activated.
February 1, 2013 at 11:29 am #152167In reply to: Not sending New User's password
@mercimeParticipantIt happens with certain webhosts. Determine whether it’s your installation which is not sending the email or whether your users are not receiving the email for some reason or another (possibly in spam folder?)
Check out “BuddyPress isnโt sending out emails” section in this page https://codex.buddypress.org/user/faq/
January 31, 2013 at 9:15 am #152120In reply to: Spam Users
hkcharlieParticipantWill an SSL for the login and reg page help ?
January 30, 2013 at 10:31 pm #152114In reply to: New users but not one confirms emails
FlipFl0pParticipantI think you are correct, there’s 530 users now.
Some of them have bot in the email name and many are from the same domain.
What’s interesting is that the default forum role is being assigned to these users but not others and these users have their name field filled out whereas others don’t.
What is the point of signing up for an account but then not confirming it to then spam the forum?
January 30, 2013 at 8:23 pm #152085In reply to: New users but not one confirms emails
Slava AbakumovModeratorI think those users are spam. What usernames do they have?
January 30, 2013 at 3:43 pm #152060In reply to: Spammer bypassed group creation
@mercimeParticipant`I have group creation disabled and users have to fill in a form to have us manually create their group.`
The spammer might have hacked into the Site/Super Admin account. Backup database. Curious what’s the username used by the hacker? Check activity of said “member” and remove/delete anything created by said member then delete from users. Do you still have a username “admin”? Then create another username for your admin account and then demote the “admin” to suscriber in wp-admin or remove completely.
https://codex.wordpress.org/FAQ_My_site_was_hackedJanuary 30, 2013 at 4:58 am #152034In reply to: Spam Users
omgbudParticipantHey try use this plugin Stop Spammer Registrations Plugin, is good and is aggressive. It can check for too fast registration (bot filled up those field fast), HTTP_REFERER, disposable email address and much more…
Most of them hunt for your register page slug /register/, try to noindex this page or change the slug.
January 28, 2013 at 3:15 pm #151863In reply to: Thousands of spam subscribers
danbpfrParticipanthere’s another plugin made by @imath which can help to wipe oup defect/unwanted/sleeping users.
https://github.com/imath/bp-wake-up-sleepers
Still in Beta but works good on 3.5.1/1.6.4 -
AuthorSearch Results