During New year holidays (from 25 December to 5th January) cancels suspension and disconnection of service for all user accounts. Extend or pay for access to the service you can at the end of the holidays!
Author: Denis Shagimuratov
-
Updated antispam logic for registration forms
Today enhanced server-side validation signups on spam.
If the site visitor failed JavaScript test, or present the results of the execution, the server will warn you and will deny registration. An example of a warning
*** User forbidden. Please enable JavaScript. Request number 52fe10427d8bf5e658d081a259b970c2. Antispam service cleantalk.org. ***
We recommend to check signups on your website!
-
Updated phpBB3 anti-spam MOD 3.72
Updated phpBB3 anti-spam MOD, in the new version:
- Optimized PHP code module.
- Removed function of verification signups via SMS code.
- Removed function to check spam posts for registered users (more than 5 approved posts).
We remind all the possibilities anti-spam module,
- Stops spam bots signups and posts.
- Stops manually added spam posts.
- Stops spam posts from Guests and New users.
- Automatic publication of relevant forum posts.
Archive module cleantalk_spam_protect_v_3.72.zip.
-
New version of anti-spam plugin for Joomla 1.5, 2.5, 3.X
Ready to use the new version of anti-spam plugin for Joomla, changes are as follows:
- Improved JavaScript validation. Validation now correctly works with any number of scanned forms on one page.
- Added protection against spam for versions VirtueMart 1.X.
- In the plugin settings added a link to the project website.
- Plugin renamed, the new name of «Antispam by CleanTalk».
We remind all the features antispam plugin,
- Stops spam bots signups on the Joomla sit.
- Stops spam bots messages from contact form.
- Antispam foor components JComments 2.3, VirtueMart.
- Antispam for modules VTEM Contact, Rapid Contact.
Download the new version UNZIPFIRST.cleantalk.joomla.plugin-v1.69.zip.
-
SPAM report from the Control Panel
At the Control panel added buttons «This is SPAM», «not SPAM». Accordingly, each button adds or removes from the blacklist IP, Email, domains of this comment/registration.
We remind that the blacklists are generated automatically on the basis of the feedback from site owners to add entries to the black list is required not less than 3 negative reviews from different web sites.
To use the buttons, go to:
Control panel -> WEB-SITE NAME. -
Updated plugin for Joomla on Oct 21, 2013
Available version 1.6.8 antispam plugin for Joomla 2.5, 3.X. Changes:
- Added protection for feedback modules Rapid Contact, VTEM Contact.
- Fixed bug with the definition of the sender’s IP address on JComments.
Archive with the plugin cleantalk.joomla25-30.plugin-v1.6.8.zip.
-
Updated phpBB3 anti-spam MOD
Anti-spam module to the forum phpBB3 updated to version 3.7.17. List revision:
- API switched to version 2.0.
- Made multiple edit/optimize the code in files posting.php, memberlist.php.
- Removed link to the project site from the footer of the forum.
- Mod tested for compatibility with phpBB 3.0.12.
Download the archive with the module cleantalk_spam_protect_v_3.7.17.zip.
IMPORTANT!
We remind you update the module should be made in the following order:
1. Make a backup of files and database of the forum.
2. Using Автомод uninstall the previous version of the module.
3. Install the new version of the module.
4. Test the following instructions:
-
Perl, Python anti-spam API to web-site spam protection
Ready to use API for protecting web site from spam, to an existing class PHP, added antispam modules Perl and Python. Libraries enable you to check on the spam as a new comment and registration. Examples:
Perl API:
[perl]
use strict;
use WebService::Antispam;my $ct = WebService::Antispam->new({
auth_key => ‘12345’ # API key, please get on cleantalk.org
});my $response = $ct->request({
message => ‘abc’, # Comment visitor to the site
example => undef, # The text of the article to which visitor created a comment.
sender_ip => ‘196.19.250.114’, # IP address of the visitor
sender_email => ‘st********@*****le.com‘, # Email IP of the visitor
sender_nickname => ‘spam_bot’, # Nickname of the visitor
submit_time => 12, # The time taken to fill the comment form in seconds
js_on => 1, # The presence of JavaScript for the site visitor, 0|1
});
[/perl]Python API:
[python]
from cleantalk import CleanTalkct = CleanTalk(auth_key=’yourkey’)
ct_result = ct.request(
message = ‘abc’, # Visitor comment
sender_ip = ‘196.19.250.114’, # Visitor IP address
sender_email = ‘st********@*****le.com‘, # Visitor email
sender_nickname = ‘spam_bot’, # Visitor nickname
js_on = 1, # Is visitor has JavaScript
submit_time = 12 # Seconds from start form filling till the form POST
)
#Check
if ct_result[‘allow’]:
print(‘Comment allowed. Reason ‘ + ct_result[‘comment’])
else:
print(‘Comment blocked. Reason ‘ + ct_result[‘comment’])
[/python]Python module compatible with the version of Python 2 and Python release 3. Soon to be available API platform .NET.
-
Updated antispam plugin for Joomla
Available to install new version of anti-spam plugin for Joomla 2.5, 3.x, the list of changes:
- plugin translated PHP API 2.0
- optimized PHP code,
- removed the extra plugin settings,
- tested for compatibility with Joomla 2.5, 3.x.
We remind all the possibilities of the plugin:
- protection of the site from the registration of the spam bots.
- protection of customers from manual spam comments.
- protect the components of JComments, VirtueMart from spam bots.
- protection of the feedback form from spam bots.
Download plugin cleantalk.joomla25-30.plugin-v1.6.6.zip.
-
Updated PHP API to version 1.21.9
Ready to use version 1.21.9 PHP API, change the following:
- Requests to the server switched ring HTTP+JSON. From RPC::XML refuse his redundancy for our service.
- In the class “Cleantalk added option «data_codepage», which allows you to specify a code page of the data transferred, respectively class automatically encodes the data in UTF-8.
The input, output the name of the variables and functions are fully compatible with the previous version of the API to update enough to replace cleantalk.class.php.
Download cleantalk-anti-spam-script-1.21.9.zip.