Search Results for 'spam'
-
Search Results
-
Wordpress version 3.8, Buddypress 1.9, bbPress 2.5.1, Website: bekindtodogs.com
I am testing out the register page and my testers are all telling me they can’t get past the register page. They enter their info, do the spam test, and then it just loops back to Registration without moving on to the next step.
I am thinking there is something I need to do with my Activate page. I have a page called Activate, which is set in the Buddypress settings, but that page doesn’t have any bbPress Template like the Register page does. Isn’t there supposed to be a bbPress Activate Template?
I deactivated the plugins “Are You A Human?” and “Buddypress Xprofile Custom Fields Type” but that didn’t seem to matter.
Please help!
I am being inundated with spam registrations (hundreds).
Running a network install of WP version 3.7.1
Running BuddyPress 1.8.1 and bbPress 2.5Very generic settings, as far as I know.
Forums are enabled (it’s a primary purpose for the site)
I disabled registrations using “Registration is disabled” from the network admin settings/network settings and the spam registrations continue.
My search of the forum did not seem to bring clarity to this problem (I’m probably missing something) except that it’s a known problem.
Side issue: viewing users from the network admin section, there is a category called “Users with Unconfirmed Email Address (7168)”. When I click on the link I get “You do not have sufficient permissions to access this page”. Does anyone know how to view this category. I’d like to delete them.
Please help!!
Rick.Topic: Username Validation
Hi, I am not entirely sure if this should be posted on the wordpress forums or here. I think that since this PHP script is using data in the buddypress registration page, that here is the place.
Anyway, I am trying to set up a website for my Minecraft Server that I have been hosting for the past few months. I am using the code below to only allow players with a premium Minecraft account to register on the website, in order to block spammers. The link in the code (http://www.minecraft.net/haspaid.jsp?user=) will print a boolean changing if the account name is valid or not. The name is put after the “=” and if it is valid, “true” will be printed, and if it isn’t valid “false” will be printed.
I am trying to make it that the name is checked before the account is made. What should happen is that the username is taken and checked on the Minecraft database, and allow the user to register if “true” is echoed, and if “false” is echoed, the registration will not be allowed to continue.
The issue is, that I am really not skilled in PHP at all, and I can’t find out why this code isn’t working. It makes no visible change to anything, and registration continues as if it wasn’t there. If anyone could give me a hand here, that would be great. Here is my Code.
<?php /* Plugin Name: Minecraft Username Validator Description: Minecraft username Validation Version: 0.1 Author: JeremyPark123999 */ /* Register actions */ add_action('registration_errors', 'verify_mc_account', 10, 3); add_action('admin_menu', 'add_mcval_options'); /* Check account on minecraft.net */ function verify_mc_account( $errors, $login, $email ) { //$user_info = get_userdata(1); $user_info = get_user_by('login', $login ); $options = array( 'timeout' => 5, ); $mcacct = wp_remote_get('http://www.minecraft.net/haspaid.jsp?user='.$user_info->user_login); if ( $mcacct == 'false' ) { if ( $mcacct == 'false' ) { $errors->add('mc_error',__('<strong>ERROR:</strong> Minecraft account is invalid.')); } else { $errors->add('mc_error',__('<strong>ERROR:</strong> Unable to contact minecraft.net.')); } } return $errors; } /* Activation/Deactivation */ function set_mcval_options() { add_option('hide_me', 'false'); } function unset_mcval_options() { delete_option('hide_me'); } register_activation_hook(__FILE__, 'set_mcval_options'); register_deactivation_hook(__FILE__, 'unset_mcval_options'); /* Add admin menu */ function add_mcval_options() { if ( get_option('hide_me') != "true" ) { add_options_page('Minecraft Validator Options', 'Minecraft Validator', 8, 'mcval-options', 'mcval_options'); } } /* Display options page */ function mcval_options() { ?> <?php }My website is at tumbleweed-mc.net
Topic: Extended Profiles deleted

Hi,
The pic above shows what the extended profile field should look like. I had a plugin called Buddypress Real Names which allowed me to delete that field above. Silly me, now my extended profiles are not working. It shows blank under profile fields on my registration page and does not send a confirmation email to new users. However, if extended profiles are turned off, all works fine.
1. Which version of WordPress are you running?
3.7.12. Did you install WordPress as a directory or subdomain install?
Directory3. If a directory install, is it in root or in a subdirectory?
root4. Did you upgrade from a previous version of WordPress? If so, from which version?
No5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Wordpress seems to be working fine6. Which version of BP are you running?
1.87. Did you upgraded from a previous version of BP? If so, from which version?
No8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes.
Admin Toolbar Remover
All In One WP Security
AVH First Defense Against Spam Plugin
BP Profile as Homepage
BuddyPress
BuddyPress Activity Plus
BuddyPress Activity Privacy
BuddyPress Wall
Contact Form
Custom Meta Widget
Disable RSS
Dynamic Widgets
Email Login
EU Cookie Law Compliance
Facebook Friends Inviter
Google Analytics for WordPress
Google XML Sitemaps
Restrict Usernames
Velvet Blues Update URLs
W3 Total Cache
WordPress SEO
WP-SpamFree
WP Block Admin
WP Content Filter
WP FLogin9. Are you using the standard BuddyPress themes or customized themes?
Standard10. Have you modified the core files in any way?
No11. Do you have any custom functions in bp-custom.php?
No12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
Not running bbPress13. Please provide a list of any errors in your server’s log files.
14. Which company provides your hosting?
Mweb15. Is your server running Windows, or if Linux; Apache, nginx or something else?
UnixHello,
The company has developed a module CleanTalk spam protection for formidable form.
I suggest considering a plug-in for automatic site moderation and spam protection. The service employs ways of spam protection, invisible for the visitors and there is no CAPTCHA!
How it works: the plug-in redirects a message (registration in the site) from the site visitor to CleanTalk moderation server, then the service checks the message and the sender according to many aspects and gives a response whether to post the message or to mark it as spam, in case of doubt the comment will be redirected to manual moderation.
Topic: cant translate timestamp
Hi, i haver problem with translating the timestamp that is showened in the activivty-feed.
Everythin else is translated by the language-file. Any idea how i change the tuimespams to swedish?
