Spam protection, AntiSpam, FireWall by CleanTalk - Version 5.140.1

Version Description

Jun 25 2020 = * Upd: .POT updated. * Upd: RU .po updated.

Download this release

Release Info

Developer glomberg
Plugin Icon 128x128 Spam protection, AntiSpam, FireWall by CleanTalk
Version 5.140.1
Comparing to
See all releases

Code changes from version 5.140 to 5.140.1

cleantalk.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Anti-Spam by CleanTalk
4
  Plugin URI: https://cleantalk.org
5
  Description: Max power, all-in-one, no Captcha, premium anti-spam plugin. No comment spam, no registration spam, no contact spam, protects any WordPress forms.
6
- Version: 5.140
7
  Author: СleanTalk <welcome@cleantalk.org>
8
  Author URI: https://cleantalk.org
9
  Text Domain: cleantalk
3
  Plugin Name: Anti-Spam by CleanTalk
4
  Plugin URI: https://cleantalk.org
5
  Description: Max power, all-in-one, no Captcha, premium anti-spam plugin. No comment spam, no registration spam, no contact spam, protects any WordPress forms.
6
+ Version: 5.140.1
7
  Author: СleanTalk <welcome@cleantalk.org>
8
  Author URI: https://cleantalk.org
9
  Text Domain: cleantalk
inc/cleantalk-autoloader.php CHANGED
@@ -1,21 +1,21 @@
1
- <?php
2
-
3
- /**
4
- * Autoloader for \Cleantalk\* classes
5
- *
6
- * @param string $class
7
- *
8
- * @return void
9
- */
10
- function apbct_autoloader( $class ){
11
- // Register class auto loader
12
- // Custom modules
13
- if( strpos( $class, 'Cleantalk' ) !== false && ! class_exists( '\\' . $class )) {
14
- $class_file = CLEANTALK_PLUGIN_DIR . 'lib' . DIRECTORY_SEPARATOR . $class . '.php';
15
- if( file_exists( $class_file ) ){
16
- require_once( $class_file );
17
- }
18
- }
19
- }
20
-
21
- spl_autoload_register( 'apbct_autoloader' );
1
+ <?php
2
+
3
+ /**
4
+ * Autoloader for \Cleantalk\* classes
5
+ *
6
+ * @param string $class
7
+ *
8
+ * @return void
9
+ */
10
+ function apbct_autoloader( $class ){
11
+ // Register class auto loader
12
+ // Custom modules
13
+ if( strpos( $class, 'Cleantalk' ) !== false && ! class_exists( '\\' . $class )) {
14
+ $class_file = CLEANTALK_PLUGIN_DIR . 'lib' . DIRECTORY_SEPARATOR . $class . '.php';
15
+ if( file_exists( $class_file ) ){
16
+ require_once( $class_file );
17
+ }
18
+ }
19
+ }
20
+
21
+ spl_autoload_register( 'apbct_autoloader' );
lib/Cleantalk/Antispam/Integrations.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
-
3
-
4
- namespace Cleantalk\Antispam;
5
-
6
-
7
- class Integrations
8
- {
9
-
10
- private $integrations = array();
11
-
12
- private $integration;
13
-
14
- public function __construct( $integrations )
15
- {
16
- $this->integrations = $integrations;
17
-
18
- foreach( $this->integrations as $integration_name => $integration_info ) {
19
- if( $integration_info['ajax'] ) {
20
- add_action( 'wp_ajax_' . $integration_info['hook'], array( $this, 'checkSpam' ), 1 );
21
- add_action( 'wp_ajax_nopriv_' . $integration_info['hook'], array( $this, 'checkSpam' ), 1 );
22
- } else {
23
- add_action( $integration_info['hook'], array( $this, 'checkSpam' ) );
24
- }
25
- }
26
- }
27
-
28
- public function checkSpam( $argument )
29
- {
30
- global $cleantalk_executed;
31
-
32
- // Getting current integration name
33
- $current_integration = $this->get_current_integration_triggered( current_action() );
34
- if( $current_integration ) {
35
- // Instantiate the integration object
36
- $class = '\\Cleantalk\\Antispam\\Integrations\\' . $current_integration;
37
- if( class_exists( $class )) {
38
- $this->integration = new $class();
39
- if( ! ( $this->integration instanceof \Cleantalk\Antispam\Integrations\IntegrationBase ) ) {
40
- // @ToDo have to handle an error
41
- do_action( 'apbct_skipped_request', __FILE__ . ' -> ' . __FUNCTION__ . '():' . __LINE__, array('Integration is not instanse of IntegrationBase class.') );
42
- return;
43
- }
44
- // Run data collecting for spam checking
45
- $data = $this->integration->getDataForChecking( $argument );
46
- if( ! is_null( $data ) ) {
47
- // Go spam checking
48
- $base_call_result = apbct_base_call(
49
- array(
50
- 'message' => !empty( $data['message'] ) ? json_encode( $data['message'] ) : '',
51
- 'sender_email' => !empty( $data['email'] ) ? $data['email'] : '',
52
- 'sender_nickname' => !empty( $data['nickname'] ) ? $data['nickname'] : '',
53
- 'post_info' => array(
54
- 'comment_type' => 'contact_form_wordpress_' . strtolower($current_integration),
55
- 'post_url' => apbct_get_server_variable( 'HTTP_REFERER' ), // Page URL must be an previous page
56
- ),
57
- )
58
- );
59
-
60
- $ct_result = $base_call_result['ct_result'];
61
-
62
- $cleantalk_executed = true;
63
-
64
- if ($ct_result->allow == 0) {
65
- // Do blocking if it is a spam
66
- $this->integration->doBlock( $ct_result->comment );
67
- }
68
- } else {
69
- // @ToDo have to handle an error
70
- return;
71
- }
72
- }
73
- }
74
- }
75
-
76
- private function get_current_integration_triggered( $hook )
77
- {
78
- if( $hook !== false ) {
79
- foreach( $this->integrations as $integration_name => $integration_info ) {
80
- if( strpos( $hook, $integration_info['hook'] ) !== false ) {
81
- return $integration_name;
82
- }
83
- }
84
- }
85
- return false;
86
- }
87
  }
1
+ <?php
2
+
3
+
4
+ namespace Cleantalk\Antispam;
5
+
6
+
7
+ class Integrations
8
+ {
9
+
10
+ private $integrations = array();
11
+
12
+ private $integration;
13
+
14
+ public function __construct( $integrations )
15
+ {
16
+ $this->integrations = $integrations;
17
+
18
+ foreach( $this->integrations as $integration_name => $integration_info ) {
19
+ if( $integration_info['ajax'] ) {
20
+ add_action( 'wp_ajax_' . $integration_info['hook'], array( $this, 'checkSpam' ), 1 );
21
+ add_action( 'wp_ajax_nopriv_' . $integration_info['hook'], array( $this, 'checkSpam' ), 1 );
22
+ } else {
23
+ add_action( $integration_info['hook'], array( $this, 'checkSpam' ) );
24
+ }
25
+ }
26
+ }
27
+
28
+ public function checkSpam( $argument )
29
+ {
30
+ global $cleantalk_executed;
31
+
32
+ // Getting current integration name
33
+ $current_integration = $this->get_current_integration_triggered( current_action() );
34
+ if( $current_integration ) {
35
+ // Instantiate the integration object
36
+ $class = '\\Cleantalk\\Antispam\\Integrations\\' . $current_integration;
37
+ if( class_exists( $class )) {
38
+ $this->integration = new $class();
39
+ if( ! ( $this->integration instanceof \Cleantalk\Antispam\Integrations\IntegrationBase ) ) {
40
+ // @ToDo have to handle an error
41
+ do_action( 'apbct_skipped_request', __FILE__ . ' -> ' . __FUNCTION__ . '():' . __LINE__, array('Integration is not instanse of IntegrationBase class.') );
42
+ return;
43
+ }
44
+ // Run data collecting for spam checking
45
+ $data = $this->integration->getDataForChecking( $argument );
46
+ if( ! is_null( $data ) ) {
47
+ // Go spam checking
48
+ $base_call_result = apbct_base_call(
49
+ array(
50
+ 'message' => !empty( $data['message'] ) ? json_encode( $data['message'] ) : '',
51
+ 'sender_email' => !empty( $data['email'] ) ? $data['email'] : '',
52
+ 'sender_nickname' => !empty( $data['nickname'] ) ? $data['nickname'] : '',
53
+ 'post_info' => array(
54
+ 'comment_type' => 'contact_form_wordpress_' . strtolower($current_integration),
55
+ 'post_url' => apbct_get_server_variable( 'HTTP_REFERER' ), // Page URL must be an previous page
56
+ ),
57
+ )
58
+ );
59
+
60
+ $ct_result = $base_call_result['ct_result'];
61
+
62
+ $cleantalk_executed = true;
63
+
64
+ if ($ct_result->allow == 0) {
65
+ // Do blocking if it is a spam
66
+ $this->integration->doBlock( $ct_result->comment );
67
+ }
68
+ } else {
69
+ // @ToDo have to handle an error
70
+ return;
71
+ }
72
+ }
73
+ }
74
+ }
75
+
76
+ private function get_current_integration_triggered( $hook )
77
+ {
78
+ if( $hook !== false ) {
79
+ foreach( $this->integrations as $integration_name => $integration_info ) {
80
+ if( strpos( $hook, $integration_info['hook'] ) !== false ) {
81
+ return $integration_name;
82
+ }
83
+ }
84
+ }
85
+ return false;
86
+ }
87
  }
lib/Cleantalk/Antispam/Integrations/ContactBank.php CHANGED
@@ -1,23 +1,23 @@
1
- <?php
2
-
3
-
4
- namespace Cleantalk\Antispam\Integrations;
5
-
6
-
7
- class ContactBank extends IntegrationBase
8
- {
9
-
10
- function getDataForChecking( $argument )
11
- {
12
- if( isset( $_REQUEST['param'] ) ) {
13
- parse_str( isset( $_REQUEST['data'] ) ? base64_decode( $_REQUEST['data'] ) : '', $form_data );
14
- return ct_get_fields_any($form_data);
15
- }
16
- return null;
17
- }
18
-
19
- function doBlock( $message )
20
- {
21
- die(json_encode(array('apbct' => array('blocked' => true, 'comment' => $message,))));
22
- }
23
  }
1
+ <?php
2
+
3
+
4
+ namespace Cleantalk\Antispam\Integrations;
5
+
6
+
7
+ class ContactBank extends IntegrationBase
8
+ {
9
+
10
+ function getDataForChecking( $argument )
11
+ {
12
+ if( isset( $_REQUEST['param'] ) ) {
13
+ parse_str( isset( $_REQUEST['data'] ) ? base64_decode( $_REQUEST['data'] ) : '', $form_data );
14
+ return ct_get_fields_any($form_data);
15
+ }
16
+ return null;
17
+ }
18
+
19
+ function doBlock( $message )
20
+ {
21
+ die(json_encode(array('apbct' => array('blocked' => true, 'comment' => $message,))));
22
+ }
23
  }
lib/Cleantalk/Antispam/Integrations/FluentForm.php CHANGED
@@ -1,31 +1,31 @@
1
- <?php
2
-
3
-
4
- namespace Cleantalk\Antispam\Integrations;
5
-
6
-
7
- class FluentForm extends IntegrationBase
8
- {
9
-
10
- function getDataForChecking( $argument )
11
- {
12
- if( isset( $_POST['data'] ) ) {
13
- parse_str( $_POST['data'], $form_data );
14
- return ct_get_fields_any($form_data);
15
- }
16
- return null;
17
- }
18
-
19
- function doBlock($message)
20
- {
21
- wp_send_json(
22
- array(
23
- 'errors' => array(
24
- 'restricted' => array(
25
- $message
26
- )
27
- )
28
- ), 422
29
- );
30
- }
31
  }
1
+ <?php
2
+
3
+
4
+ namespace Cleantalk\Antispam\Integrations;
5
+
6
+
7
+ class FluentForm extends IntegrationBase
8
+ {
9
+
10
+ function getDataForChecking( $argument )
11
+ {
12
+ if( isset( $_POST['data'] ) ) {
13
+ parse_str( $_POST['data'], $form_data );
14
+ return ct_get_fields_any($form_data);
15
+ }
16
+ return null;
17
+ }
18
+
19
+ function doBlock($message)
20
+ {
21
+ wp_send_json(
22
+ array(
23
+ 'errors' => array(
24
+ 'restricted' => array(
25
+ $message
26
+ )
27
+ )
28
+ ), 422
29
+ );
30
+ }
31
  }
lib/Cleantalk/Antispam/Integrations/IntegrationBase.php CHANGED
@@ -1,11 +1,11 @@
1
- <?php
2
-
3
-
4
- namespace Cleantalk\Antispam\Integrations;
5
-
6
-
7
- abstract class IntegrationBase
8
- {
9
- abstract function getDataForChecking( $argument );
10
- abstract function doBlock( $message );
11
  }
1
+ <?php
2
+
3
+
4
+ namespace Cleantalk\Antispam\Integrations;
5
+
6
+
7
+ abstract class IntegrationBase
8
+ {
9
+ abstract function getDataForChecking( $argument );
10
+ abstract function doBlock( $message );
11
  }
lib/Cleantalk/Common/Cookie.php CHANGED
@@ -1,52 +1,52 @@
1
- <?php
2
-
3
- namespace Cleantalk\Common;
4
-
5
- /**
6
- * Class Cookie
7
- * Safety handler for $_COOKIE
8
- *
9
- * @usage \Cleantalk\Common\Cookie::get( $name );
10
- *
11
- * @package Cleantalk\Common
12
- */
13
- class Cookie extends ServerVariables{
14
-
15
- static $instance;
16
-
17
- /**
18
- * Constructor
19
- * @return $this
20
- */
21
- public static function getInstance(){
22
- if (!isset(static::$instance)) {
23
- static::$instance = new static;
24
- static::$instance->init();
25
- }
26
- return static::$instance;
27
- }
28
-
29
- /**
30
- * Gets given $_COOKIE variable and seva it to memory
31
- * @param $name
32
- *
33
- * @return mixed|string
34
- */
35
- protected function get_variable( $name ){
36
-
37
- // Return from memory. From $this->variables
38
- if(isset(static::$instance->variables[$name]))
39
- return static::$instance->variables[$name];
40
-
41
- if( function_exists( 'filter_input' ) )
42
- $value = filter_input( INPUT_COOKIE, $name );
43
-
44
- if( empty( $value ) )
45
- $value = isset( $_COOKIE[ $name ] ) ? $_COOKIE[ $name ] : '';
46
-
47
- // Remember for thurther calls
48
- static::getInstance()->remebmer_variable( $name, $value );
49
-
50
- return $value;
51
- }
52
  }
1
+ <?php
2
+
3
+ namespace Cleantalk\Common;
4
+
5
+ /**
6
+ * Class Cookie
7
+ * Safety handler for $_COOKIE
8
+ *
9
+ * @usage \Cleantalk\Common\Cookie::get( $name );
10
+ *
11
+ * @package Cleantalk\Common
12
+ */
13
+ class Cookie extends ServerVariables{
14
+
15
+ static $instance;
16
+
17
+ /**
18
+ * Constructor
19
+ * @return $this
20
+ */
21
+ public static function getInstance(){
22
+ if (!isset(static::$instance)) {
23
+ static::$instance = new static;
24
+ static::$instance->init();
25
+ }
26
+ return static::$instance;
27
+ }
28
+
29
+ /**
30
+ * Gets given $_COOKIE variable and seva it to memory
31
+ * @param $name
32
+ *
33
+ * @return mixed|string
34
+ */
35
+ protected function get_variable( $name ){
36
+
37
+ // Return from memory. From $this->variables
38
+ if(isset(static::$instance->variables[$name]))
39
+ return static::$instance->variables[$name];
40
+
41
+ if( function_exists( 'filter_input' ) )
42
+ $value = filter_input( INPUT_COOKIE, $name );
43
+
44
+ if( empty( $value ) )
45
+ $value = isset( $_COOKIE[ $name ] ) ? $_COOKIE[ $name ] : '';
46
+
47
+ // Remember for thurther calls
48
+ static::getInstance()->remebmer_variable( $name, $value );
49
+
50
+ return $value;
51
+ }
52
  }
lib/Cleantalk/Common/Get.php CHANGED
@@ -1,52 +1,52 @@
1
- <?php
2
-
3
- namespace Cleantalk\Common;
4
-
5
- /**
6
- * Class Get
7
- * Safety handler for $_GET
8
- *
9
- * @usage \Cleantalk\Common\Get::get( $name );
10
- *
11
- * @package Cleantalk\Common
12
- */
13
- class Get extends ServerVariables{
14
-
15
- static $instance;
16
-
17
- /**
18
- * Constructor
19
- * @return $this
20
- */
21
- public static function getInstance(){
22
- if (!isset(static::$instance)) {
23
- static::$instance = new static;
24
- static::$instance->init();
25
- }
26
- return static::$instance;
27
- }
28
-
29
- /**
30
- * Gets given $_GET variable and seva it to memory
31
- * @param $name
32
- *
33
- * @return mixed|string
34
- */
35
- protected function get_variable( $name ){
36
-
37
- // Return from memory. From $this->variables
38
- if(isset(static::$instance->variables[$name]))
39
- return static::$instance->variables[$name];
40
-
41
- if( function_exists( 'filter_input' ) )
42
- $value = filter_input( INPUT_GET, $name );
43
-
44
- if( empty( $value ) )
45
- $value = isset( $_GET[ $name ] ) ? $_GET[ $name ] : '';
46
-
47
- // Remember for thurther calls
48
- static::getInstance()->remebmer_variable( $name, $value );
49
-
50
- return $value;
51
- }
52
  }
1
+ <?php
2
+
3
+ namespace Cleantalk\Common;
4
+
5
+ /**
6
+ * Class Get
7
+ * Safety handler for $_GET
8
+ *
9
+ * @usage \Cleantalk\Common\Get::get( $name );
10
+ *
11
+ * @package Cleantalk\Common
12
+ */
13
+ class Get extends ServerVariables{
14
+
15
+ static $instance;
16
+
17
+ /**
18
+ * Constructor
19
+ * @return $this
20
+ */
21
+ public static function getInstance(){
22
+ if (!isset(static::$instance)) {
23
+ static::$instance = new static;
24
+ static::$instance->init();
25
+ }
26
+ return static::$instance;
27
+ }
28
+
29
+ /**
30
+ * Gets given $_GET variable and seva it to memory
31
+ * @param $name
32
+ *
33
+ * @return mixed|string
34
+ */
35
+ protected function get_variable( $name ){
36
+
37
+ // Return from memory. From $this->variables
38
+ if(isset(static::$instance->variables[$name]))
39
+ return static::$instance->variables[$name];
40
+
41
+ if( function_exists( 'filter_input' ) )
42
+ $value = filter_input( INPUT_GET, $name );
43
+
44
+ if( empty( $value ) )
45
+ $value = isset( $_GET[ $name ] ) ? $_GET[ $name ] : '';
46
+
47
+ // Remember for thurther calls
48
+ static::getInstance()->remebmer_variable( $name, $value );
49
+
50
+ return $value;
51
+ }
52
  }
lib/Cleantalk/Common/Post.php CHANGED
@@ -1,53 +1,53 @@
1
- <?php
2
-
3
-
4
- namespace Cleantalk\Common;
5
-
6
- /**
7
- * Class Post
8
- * Safety handler for $_POST
9
- *
10
- * @usage \Cleantalk\Common\Post::get( $name );
11
- *
12
- * @package Cleantalk\Common
13
- */
14
- class Post extends ServerVariables{
15
-
16
- static $instance;
17
-
18
- /**
19
- * Constructor
20
- * @return $this
21
- */
22
- public static function getInstance(){
23
- if (!isset(static::$instance)) {
24
- static::$instance = new static;
25
- static::$instance->init();
26
- }
27
- return static::$instance;
28
- }
29
-
30
- /**
31
- * Gets given $_POST variable and seva it to memory
32
- * @param $name
33
- *
34
- * @return mixed|string
35
- */
36
- protected function get_variable( $name ){
37
-
38
- // Return from memory. From $this->variables
39
- if(isset(static::$instance->variables[$name]))
40
- return static::$instance->variables[$name];
41
-
42
- if( function_exists( 'filter_input' ) )
43
- $value = filter_input( INPUT_POST, $name );
44
-
45
- if( empty( $value ) )
46
- $value = isset( $_POST[ $name ] ) ? $_POST[ $name ] : '';
47
-
48
- // Remember for thurther calls
49
- static::getInstance()->remebmer_variable( $name, $value );
50
-
51
- return $value;
52
- }
53
  }
1
+ <?php
2
+
3
+
4
+ namespace Cleantalk\Common;
5
+
6
+ /**
7
+ * Class Post
8
+ * Safety handler for $_POST
9
+ *
10
+ * @usage \Cleantalk\Common\Post::get( $name );
11
+ *
12
+ * @package Cleantalk\Common
13
+ */
14
+ class Post extends ServerVariables{
15
+
16
+ static $instance;
17
+
18
+ /**
19
+ * Constructor
20
+ * @return $this
21
+ */
22
+ public static function getInstance(){
23
+ if (!isset(static::$instance)) {
24
+ static::$instance = new static;
25
+ static::$instance->init();
26
+ }
27
+ return static::$instance;
28
+ }
29
+
30
+ /**
31
+ * Gets given $_POST variable and seva it to memory
32
+ * @param $name
33
+ *
34
+ * @return mixed|string
35
+ */
36
+ protected function get_variable( $name ){
37
+
38
+ // Return from memory. From $this->variables
39
+ if(isset(static::$instance->variables[$name]))
40
+ return static::$instance->variables[$name];
41
+
42
+ if( function_exists( 'filter_input' ) )
43
+ $value = filter_input( INPUT_POST, $name );
44
+
45
+ if( empty( $value ) )
46
+ $value = isset( $_POST[ $name ] ) ? $_POST[ $name ] : '';
47
+
48
+ // Remember for thurther calls
49
+ static::getInstance()->remebmer_variable( $name, $value );
50
+
51
+ return $value;
52
+ }
53
  }
lib/Cleantalk/Common/Request.php CHANGED
@@ -1,48 +1,48 @@
1
- <?php
2
-
3
- namespace Cleantalk\Common;
4
-
5
- /**
6
- * Class Request
7
- * Safety handler for $_REQUEST
8
- *
9
- * @usage \Cleantalk\Common\Request::get( $name );
10
- *
11
- * @package Cleantalk\Common
12
- */
13
- class Request extends ServerVariables{
14
-
15
- static $instance;
16
-
17
- /**
18
- * Constructor
19
- * @return $this
20
- */
21
- public static function getInstance(){
22
- if (!isset(static::$instance)) {
23
- static::$instance = new static;
24
- static::$instance->init();
25
- }
26
- return static::$instance;
27
- }
28
-
29
- /**
30
- * Gets given $_REQUEST variable and seva it to memory
31
- * @param $name
32
- *
33
- * @return mixed|string
34
- */
35
- protected function get_variable( $name ){
36
-
37
- // Return from memory. From $this->variables
38
- if(isset(static::$instance->variables[$name]))
39
- return static::$instance->variables[$name];
40
-
41
- $value = isset( $_REQUEST[ $name ] ) ? $_REQUEST[ $name ] : '';
42
-
43
- // Remember for thurther calls
44
- static::getInstance()->remebmer_variable( $name, $value );
45
-
46
- return $value;
47
- }
48
  }
1
+ <?php
2
+
3
+ namespace Cleantalk\Common;
4
+
5
+ /**
6
+ * Class Request
7
+ * Safety handler for $_REQUEST
8
+ *
9
+ * @usage \Cleantalk\Common\Request::get( $name );
10
+ *
11
+ * @package Cleantalk\Common
12
+ */
13
+ class Request extends ServerVariables{
14
+
15
+ static $instance;
16
+
17
+ /**
18
+ * Constructor
19
+ * @return $this
20
+ */
21
+ public static function getInstance(){
22
+ if (!isset(static::$instance)) {
23
+ static::$instance = new static;
24
+ static::$instance->init();
25
+ }
26
+ return static::$instance;
27
+ }
28
+
29
+ /**
30
+ * Gets given $_REQUEST variable and seva it to memory
31
+ * @param $name
32
+ *
33
+ * @return mixed|string
34
+ */
35
+ protected function get_variable( $name ){
36
+
37
+ // Return from memory. From $this->variables
38
+ if(isset(static::$instance->variables[$name]))
39
+ return static::$instance->variables[$name];
40
+
41
+ $value = isset( $_REQUEST[ $name ] ) ? $_REQUEST[ $name ] : '';
42
+
43
+ // Remember for thurther calls
44
+ static::getInstance()->remebmer_variable( $name, $value );
45
+
46
+ return $value;
47
+ }
48
  }
lib/Cleantalk/Common/Server.php CHANGED
@@ -1,83 +1,83 @@
1
- <?php
2
-
3
- namespace Cleantalk\Common;
4
-
5
- /**
6
- * Class Server
7
- * Wrapper to safely get $_SERVER variables
8
- *
9
- * @package Cleantalk\Common
10
- */
11
- class Server extends ServerVariables{
12
-
13
- static $instance;
14
-
15
- /**
16
- * Constructor
17
- * @return $this
18
- */
19
- public static function getInstance(){
20
- if (!isset(static::$instance)) {
21
- static::$instance = new static;
22
- static::$instance->init();
23
- }
24
- return static::$instance;
25
- }
26
-
27
- /**
28
- * Gets given $_SERVER variable and seva it to memory
29
- *
30
- * @param string $name
31
- *
32
- * @return mixed|string
33
- */
34
- protected function get_variable( $name ){
35
-
36
- // Return from memory. From $this->server
37
- if(isset(static::$instance->variables[$name]))
38
- return static::$instance->variables[$name];
39
-
40
- $name = strtoupper( $name );
41
-
42
- if( function_exists( 'filter_input' ) )
43
- $value = filter_input( INPUT_SERVER, $name );
44
-
45
- if( empty( $value ) )
46
- $value = isset( $_SERVER[ $name ] ) ? $_SERVER[ $name ] : '';
47
-
48
- // Convert to upper case for REQUEST_METHOD
49
- if( in_array( $name, array( 'REQUEST_METHOD' ) ) )
50
- $value = strtoupper( $value );
51
-
52
- // Convert HTML chars for HTTP_USER_AGENT, HTTP_USER_AGENT, SERVER_NAME
53
- if( in_array( $name, array( 'HTTP_USER_AGENT', 'HTTP_USER_AGENT', 'SERVER_NAME' ) ) )
54
- $value = htmlspecialchars( $value );
55
-
56
- // Remember for thurther calls
57
- static::getInstance()->remebmer_variable( $name, $value );
58
-
59
- return $value;
60
- }
61
-
62
- /**
63
- * Checks if $_SERVER['REQUEST_URI'] contains string
64
- *
65
- * @param string $string needle
66
- *
67
- * @return bool|int
68
- */
69
- public function in_uri( $string ){
70
- return self::has_string( 'REQUEST_URI', $string );
71
- }
72
-
73
- /**
74
- * Checks if $_SERVER['REQUEST_URI'] contains string
75
- *
76
- * @param string $string needle
77
- *
78
- * @return bool|int
79
- */
80
- public function in_referer( $string ){
81
- return self::has_string( 'HTTP_REFERER', $string );
82
- }
83
  }
1
+ <?php
2
+
3
+ namespace Cleantalk\Common;
4
+
5
+ /**
6
+ * Class Server
7
+ * Wrapper to safely get $_SERVER variables
8
+ *
9
+ * @package Cleantalk\Common
10
+ */
11
+ class Server extends ServerVariables{
12
+
13
+ static $instance;
14
+
15
+ /**
16
+ * Constructor
17
+ * @return $this
18
+ */
19
+ public static function getInstance(){
20
+ if (!isset(static::$instance)) {
21
+ static::$instance = new static;
22
+ static::$instance->init();
23
+ }
24
+ return static::$instance;
25
+ }
26
+
27
+ /**
28
+ * Gets given $_SERVER variable and seva it to memory
29
+ *
30
+ * @param string $name
31
+ *
32
+ * @return mixed|string
33
+ */
34
+ protected function get_variable( $name ){
35
+
36
+ // Return from memory. From $this->server
37
+ if(isset(static::$instance->variables[$name]))
38
+ return static::$instance->variables[$name];
39
+
40
+ $name = strtoupper( $name );
41
+
42
+ if( function_exists( 'filter_input' ) )
43
+ $value = filter_input( INPUT_SERVER, $name );
44
+
45
+ if( empty( $value ) )
46
+ $value = isset( $_SERVER[ $name ] ) ? $_SERVER[ $name ] : '';
47
+
48
+ // Convert to upper case for REQUEST_METHOD
49
+ if( in_array( $name, array( 'REQUEST_METHOD' ) ) )
50
+ $value = strtoupper( $value );
51
+
52
+ // Convert HTML chars for HTTP_USER_AGENT, HTTP_USER_AGENT, SERVER_NAME
53
+ if( in_array( $name, array( 'HTTP_USER_AGENT', 'HTTP_USER_AGENT', 'SERVER_NAME' ) ) )
54
+ $value = htmlspecialchars( $value );
55
+
56
+ // Remember for thurther calls
57
+ static::getInstance()->remebmer_variable( $name, $value );
58
+
59
+ return $value;
60
+ }
61
+
62
+ /**
63
+ * Checks if $_SERVER['REQUEST_URI'] contains string
64
+ *
65
+ * @param string $string needle
66
+ *
67
+ * @return bool|int
68
+ */
69
+ public function in_uri( $string ){
70
+ return self::has_string( 'REQUEST_URI', $string );
71
+ }
72
+
73
+ /**
74
+ * Checks if $_SERVER['REQUEST_URI'] contains string
75
+ *
76
+ * @param string $string needle
77
+ *
78
+ * @return bool|int
79
+ */
80
+ public function in_referer( $string ){
81
+ return self::has_string( 'HTTP_REFERER', $string );
82
+ }
83
  }
lib/Cleantalk/Common/ServerVariables.php CHANGED
@@ -1,84 +1,84 @@
1
- <?php
2
-
3
- namespace Cleantalk\Common;
4
-
5
- /**
6
- * Class ServerVariables
7
- * Safety handler for ${_SOMETHING}
8
- *
9
- * @usage \Cleantalk\Common\{SOMETHING}::get( $name );
10
- *
11
- * @package Cleantalk\Common
12
- */
13
- class ServerVariables{
14
-
15
- static $instance;
16
- public $variables = [];
17
-
18
- public function __construct(){}
19
- public function __wakeup(){}
20
- public function __clone(){}
21
-
22
- /**
23
- * Constructor
24
- * @return $this
25
- */
26
- public static function getInstance(){
27
- if (!isset(static::$instance)) {
28
- static::$instance = new static;
29
- static::$instance->init();
30
- }
31
- return static::$instance;
32
- }
33
-
34
- /**
35
- * Alternative constructor
36
- */
37
- protected function init(){
38
-
39
- }
40
-
41
- /**
42
- * Gets variable from ${_SOMETHING}
43
- *
44
- * @param $name
45
- *
46
- * @return string ${_SOMETHING}[ $name ]
47
- */
48
- public static function get( $name ){
49
- return static::getInstance()->get_variable( $name );
50
- }
51
-
52
- /**
53
- * BLUEPRINT
54
- * Gets given ${_SOMETHING} variable and seva it to memory
55
- * @param $name
56
- *
57
- * @return mixed|string
58
- */
59
- protected function get_variable( $name ){
60
- return true;
61
- }
62
-
63
- /**
64
- * Save variable to $this->variables[]
65
- *
66
- * @param string $name
67
- * @param string $value
68
- */
69
- protected function remebmer_variable( $name, $value ){
70
- static::$instance->variables[$name] = $value;
71
- }
72
-
73
- /**
74
- * Checks if variable contains given string
75
- *
76
- * @param string $var Haystack to search in
77
- * @param string $string Needle to search
78
- *
79
- * @return bool|int
80
- */
81
- static function has_string( $var, $string ){
82
- return stripos( self::get( $var ), $string ) !== false;
83
- }
84
  }
1
+ <?php
2
+
3
+ namespace Cleantalk\Common;
4
+
5
+ /**
6
+ * Class ServerVariables
7
+ * Safety handler for ${_SOMETHING}
8
+ *
9
+ * @usage \Cleantalk\Common\{SOMETHING}::get( $name );
10
+ *
11
+ * @package Cleantalk\Common
12
+ */
13
+ class ServerVariables{
14
+
15
+ static $instance;
16
+ public $variables = [];
17
+
18
+ public function __construct(){}
19
+ public function __wakeup(){}
20
+ public function __clone(){}
21
+
22
+ /**
23
+ * Constructor
24
+ * @return $this
25
+ */
26
+ public static function getInstance(){
27
+ if (!isset(static::$instance)) {
28
+ static::$instance = new static;
29
+ static::$instance->init();
30
+ }
31
+ return static::$instance;
32
+ }
33
+
34
+ /**
35
+ * Alternative constructor
36
+ */
37
+ protected function init(){
38
+
39
+ }
40
+
41
+ /**
42
+ * Gets variable from ${_SOMETHING}
43
+ *
44
+ * @param $name
45
+ *
46
+ * @return string ${_SOMETHING}[ $name ]
47
+ */
48
+ public static function get( $name ){
49
+ return static::getInstance()->get_variable( $name );
50
+ }
51
+
52
+ /**
53
+ * BLUEPRINT
54
+ * Gets given ${_SOMETHING} variable and seva it to memory
55
+ * @param $name
56
+ *
57
+ * @return mixed|string
58
+ */
59
+ protected function get_variable( $name ){
60
+ return true;
61
+ }
62
+
63
+ /**
64
+ * Save variable to $this->variables[]
65
+ *
66
+ * @param string $name
67
+ * @param string $value
68
+ */
69
+ protected function remebmer_variable( $name, $value ){
70
+ static::$instance->variables[$name] = $value;
71
+ }
72
+
73
+ /**
74
+ * Checks if variable contains given string
75
+ *
76
+ * @param string $var Haystack to search in
77
+ * @param string $string Needle to search
78
+ *
79
+ * @return bool|int
80
+ */
81
+ static function has_string( $var, $string ){
82
+ return stripos( self::get( $var ), $string ) !== false;
83
+ }
84
  }
lib/CleantalkUpgraderSkin_Deprecated.php CHANGED
@@ -1,44 +1,44 @@
1
- <?php
2
-
3
- class CleantalkUpgraderSkin_Deprecated extends WP_Upgrader_Skin
4
- {
5
-
6
- public $upgrader;
7
- public $done_header = false;
8
- public $done_footer = false;
9
-
10
- /**
11
- * Holds the result of an upgrade.
12
- *
13
- * @since 2.8.0
14
- * @var string|bool|WP_Error
15
- */
16
- public $result = false;
17
- public $options = array();
18
-
19
- /**
20
- */
21
- public function header() { }
22
-
23
- /**
24
- */
25
- public function footer() { }
26
-
27
- /**
28
- *
29
- * @param string $string
30
- */
31
- public function feedback($string) { }
32
-
33
- /**
34
- *
35
- * @param string|WP_Error $errors
36
- */
37
- public function error($errors) {
38
- if(is_wp_error($errors)){
39
- $this->upgrader->apbct_result = $errors->get_error_code();
40
- }else{
41
- $this->upgrader->apbct_result = $this->upgrader->strings[$errors];
42
- }
43
- }
44
- }
1
+ <?php
2
+
3
+ class CleantalkUpgraderSkin_Deprecated extends WP_Upgrader_Skin
4
+ {
5
+
6
+ public $upgrader;
7
+ public $done_header = false;
8
+ public $done_footer = false;
9
+
10
+ /**
11
+ * Holds the result of an upgrade.
12
+ *
13
+ * @since 2.8.0
14
+ * @var string|bool|WP_Error
15
+ */
16
+ public $result = false;
17
+ public $options = array();
18
+
19
+ /**
20
+ */
21
+ public function header() { }
22
+
23
+ /**
24
+ */
25
+ public function footer() { }
26
+
27
+ /**
28
+ *
29
+ * @param string $string
30
+ */
31
+ public function feedback($string) { }
32
+
33
+ /**
34
+ *
35
+ * @param string|WP_Error $errors
36
+ */
37
+ public function error($errors) {
38
+ if(is_wp_error($errors)){
39
+ $this->upgrader->apbct_result = $errors->get_error_code();
40
+ }else{
41
+ $this->upgrader->apbct_result = $this->upgrader->strings[$errors];
42
+ }
43
+ }
44
+ }
readme.txt CHANGED
@@ -1,3515 +1,3519 @@
1
- === Spam protection, AntiSpam, FireWall by CleanTalk ===
2
- Contributors: safronik
3
- Tags: spam, antispam, woocommerce, comments, firewall
4
- Requires at least: 3.0
5
- Tested up to: 5.4
6
- Requires PHP: 5.4
7
- Stable tag: 5.140
8
- License: GPLv2
9
-
10
- Spam protection, anti-spam, firewall, premium plugin. No spam comments & users, no spam contact form & WooCommerce anti-spam.
11
-
12
- == Description ==
13
-
14
- **Supports: Contact Form 7, Contact Form by WPForms, Ninja Forms, Gravity Forms, MailChimp, Formidable forms, WooCommerce, JetPack comments and contact form, BuddyPress, bbPress, S2Member, MailPoet, wpDiscuz, any WordPress registrations & contact forms and themes. Just set up and forget the spam!**
15
-
16
- No CAPTCHA, no questions, no animal counting, no puzzles, no math and no spam bots. Universal AntiSpam plugin.
17
-
18
- = AntiSpam features =
19
- 1. Stops spam comments.
20
- 2. Stops spam registrations.
21
- 3. Stops spam contact emails.
22
- 4. Stops spam orders.
23
- 5. Stops spam bookings.
24
- 6. Stops spam subscriptions.
25
- 7. Stops spam surveys, polls.
26
- 8. Stops spam in widgets.
27
- 9. Stops spam in WooCommerce.
28
- 10. Checks and removes the existing spam comments and spam users.
29
- 11. Compatible with mobile users and devices.
30
- 12. Compatible with General Data Protection Regulation (GDPR) (EU).
31
- 13. Real-time email validation. Is email real or Not.
32
- 14. Blocking disposable & temporary emails.
33
- 15. No Spam - No Google Penalties. Give your SEO boost.
34
- 16. Mobile friendly Anti Spam & FireWall.
35
- 17. Stops spam in Search Form.
36
- 18. Disable comments.
37
-
38
- = Public reviews =
39
- > CleanTalk - Cloud-Based Anti-Spam Service to Keep Your Site Bot-Free.
40
- > <a href="https://newswatchtv.com/2018/07/18/cleantalk-newswatch-review/" rarget="_blank">NewsWatch Review</a>.
41
-
42
- > Using CleanTalk on WPLift was a great test as we receive huge amounts of spam.
43
- > *Oliver Dale, <a href="http://wplift.com/wordpress-anti-spam-plugin" target="_blank">WPLift.com</a>.*
44
-
45
- >I know you have heard of a number of anti-spam plugins. But you must know, the cloud-based ones are the best regarding detection rate. They compare all the content in forms with their own algorithm to find out the legibility.
46
- >*<a href="https://www.techwibe.com/cleantalk-wordpress-plugin-review/" target="_blank">www.techwibe.com</a>*
47
-
48
- > The key selling point of CleanTalk for me is not simply its effectiveness. It's the fact that CleanTalk works in the background. It does not make users jump through hoops in order to submit a comment or complete a form.
49
- > <a href="https://www.kevinmuldoon.com/cleantalk-anti-spam-service/">www.kevinmuldoon.com</a>
50
-
51
- = Free trial then $8 per year =
52
- CleanTalk is a free anti spam plugin which work with the premium Cloud AntiSpam service cleantalk.org. This plugin as a service https://en.wikipedia.org/wiki/Software_as_a_service.
53
-
54
- = AntiSpam protection for comments =
55
- Native spam protection for WordPress, JetPack comments and any other comment plugins. The plugin moves spam comments to SPAM folder or you can set the option to ban spam comments silently. You can also enable the option in the plugin settings to auto-delete comments from SPAM folder.
56
-
57
- = Spam bots registrations filter =
58
- Filters spam bots on registration forms of WordPress, BuddyPress, bbPress, S2Member, WooCommerce, Profile builder, Login with AJAX and any other registration plugins.
59
-
60
- = Protection from contact form spam =
61
- The plugin is tested and ready to protect from spam emails via Formidable forms, Contact form 7, JetPack Contact form, Fast Secure Contact form, Ninja forms, Landing Page Builder, Gravity forms, Contact Form by BestWebSoft, Simple Contact Form Plugin - PirateForms, Visual Form Builder, Contact Form by WebDorado, Contact Form Email, MW WP Form, Contact Form by Jeff Bulllins, Contact Us Form, WCP Contact Form, WPForms Lite, Custom Contact, Forms, Caldera Forms, Visual Form Builder, Contact Form Clean and Simple, Divi by Elegant Themes, The7 theme and any other themes or custom contact forms, amoForms, Ultimate Form Builder, Contact Bank - Contact Forms Builder, Forms easily built with Smart Forms, Usernoise contact form, Contact Form by Web-Settler, HubSpot Marketing Free, QuForm.
62
-
63
- = WooCommerce spam filter =
64
- Anti-spam by CleanTalk filters spam registrations and spam reviews for WooCommerce. The plugin is fully compatible with WooCommerce 2.1 and higher.
65
-
66
- = Newsletters antispam filter =
67
- Anti-spam by CleanTalk filters spam subscriptions for MailPoet, MailChimp, PopupAlly and many other newsletter plugins.
68
-
69
- = Spam filter for theme contact forms =
70
- The plugin blocks spam emails via any theme (built-in ones included) contact forms. The plugin filters spam emails silently (without any error notices on WordPress frontend) in AJAX forms as well.
71
-
72
- = bbPress spam filter =
73
- Spam protection for everything about bbPress: logins, registrations, forums, topics and replies.
74
-
75
- = Other spam filters =
76
- * WordPress Landing Pages.
77
- * WP User Frontend, UserPro.
78
- * Any WordPress form (checkbox 'Custom contact forms').
79
- * Any submission to the site (checkbox 'Check all POST data')
80
-
81
- = Compatible with WordPress cache plugins =
82
- * W3 Total Cache, Quick Cache, WP Fastest Cache, Hyper Cache, WP Super cache, WP-Rocket and any other cache plugins.
83
-
84
- = Check existing comments for spam. Bulk spam comments removal. Spam comment Cleaner =
85
- With the help of anti-spam by CleanTalk you can inspect through existing comments to find and quickly delete spam comments at once. To use this function, go to WP Console -> Comments -> Find spam comments.
86
-
87
- = Check existing users for spam. Bulk spam accounts removal. Spam users cleaner =
88
- With the help of anti-spam by CleanTalk you can inspect through existing accounts to find and quickly delete spam users at once. For use this function, go to WP Console -> Users -> Check for spam. Also, you can export a list of spam users to the CSV.
89
-
90
- = Blocking users by country =
91
- Automatically block comments and registrations from the countries you have set a ban for. This option is useful in cases of manual spam protection and for protection enhancement. If your site is not intended for international audience and you do not expect comments/users from other countries.
92
-
93
- = Blocking comments by "stop words" =
94
- You can block comments which contain "stop words" to enhance spam protection and messages with obscene words blocking. You can add particular words or phrases.
95
-
96
- = Private black lists for anti-spam service =
97
- Automatically block comments and registrations from your private black
98
- IP/email address list. This option helps to strengthen the spam protection from a manual spam or block unwanted comments from users. You can add not only the certain IP addresses, but also a separate subnet to your personal black list.
99
-
100
- = Private black list for Spam FireWall =
101
- It allows you to add individual IP addresses and subnets to Spam FireWall. It
102
- blocks the spam attacks from IP addresses which are not included in the SFW base yet. This option can help to block HTTP/HTTPS DDoS, SQL, brute force attacks and any others that made it through the HTTP/HTTPS. You can add not only the certain IP addresses, but also a separate subnet to your personal black list.
103
-
104
- = Low false/positive rate =
105
- This plugin uses multiple anti-spam tests to filter spam bots having as low false/positive rate as possible. Multiple anti-spam tests help to avoid false/positive blocks of the real website visitors even if one of the tests failed.
106
-
107
- = How effective is CleanTalk? =
108
- Accurately blocking spam is not an easy thing to do, but CleanTalk has a very low proven False/Positive rate. Here is actual statistics on false positives for all customers.
109
-
110
- * Registrations - 0.007%
111
- * Comments - 0.001%
112
- * Contact forms - 0.001%
113
- * Orders (WooCommerce) - 0.008%
114
-
115
- The statistic was calculated on November 10 2017 for 1 million requests.
116
-
117
- = How CleanTalk improves SEO for your website? =
118
- So, you already know that the speed of the site has a direct impact on SEO.
119
-
120
- *CleanTalk works faster than most of the other anti-spam plugins.* It is common knowledge that the faster your site loads, the better your customer experience is, the better your SEO will be, and the better your site will convert. Speed is becoming increasingly important in SEO, conversion and user experience. Today, site speed is one of the most important ranking factors on Google. A site that loads slowly will lose visitors and potential revenue.
121
-
122
- There are different ways of improving your site's loading performance. One important parameter for site performance is to install well-developed plugins from a reputable source.
123
-
124
- Among anti-spam plugins CleanTalk AntiSpam is one of the fastest. Despite the
125
- large plugin functionality, the developers have optimized the performance of
126
- the plugin so that AntiSpam by CleanTalk is faster than most analogs. This contributes to the cloud service architecture, as all calculations take place in the cloud, not on the server, the server receives the finished result for further action.
127
-
128
- https://s.w.org/plugins/cleantalk-spam-protect/screenshot-5.png?r=1288723
129
-
130
- = How CleanTalk works? =
131
- * A visitor writes a comment or registers
132
- * Anti-Spam by CleanTalk plugin sends action parameters into the CleanTalk cloud
133
- * Service analyzes the parameters
134
- * If this is a visitor, the comment will be published. If it's a spam bot, then CleanTalk blocks this comment or registration.
135
- * Parameters are written to the spam log which can be viewed in the Control Panel service.
136
-
137
- CleanTalk team has been developing a cloud antispam system for five years and has created a truly reliable anti-spam service designed for you to guarantee
138
- your safety.
139
-
140
- = Spam attacks log =
141
- Service CleanTalk (this plugin is a client application for CleanTalk anti-spam service) records all filtered comments, registration and other spam attacks in the "Log of spam attacks" and stores the data in the log for up to 45 days. Using the log, you can ensure reliable protection of your website from spam and no false/positive filtering.
142
-
143
- = Spam FireWall =
144
- CleanTalk has an advanced option "Spam FireWall". Spam FireWall allows blocking the most active spam bots before they get access to your website. It prevents spam bots from loading website pages so your web server doesn't have to perform all scripts on these pages. Also it prevents scanning of pages of the website by spam bots. Therefore Spam FireWall significantly reduces the load on your web server. Spam FireWall also makes CleanTalk the two-step protection from spam bots. Spam FireWall is the first step and it blocks the most active spam bots. CleanTalk Anti-Spam is the second step and checks all other requests on the website in the moment of submitting comments/registers etc.
145
-
146
- Spam FireWall is fully compatible with the most popular VPN services.
147
- Also, Spam FireWall supports all search engines Google, Bing, Yahoo, Baidu, MSN, Yandex and etc.
148
-
149
- = How Spam FireWall works? =
150
- * The visitor enters to your web site.
151
- * HTTP request data are being checked in the nearly 5.8 million of the identified spam bot IPs.
152
- * If it is an active spam bot, the bot gets a blank page, if it is a visitor then he receives a normal page. This process is completely transparent for the visitors.
153
-
154
- All the CleanTalk Spam FireWall activity is being logged in the process of filtering.
155
-
156
- = Spam FireWall DDoS Protection =
157
- Spam FireWall can mitigate HTTP/HTTPS DDoS attacks. When an intruder makes GET requests to attack your website, Spam FireWall blocks all requests from bad IP addresses. Your website gives the intruder a special page with the description of DDoS rejection instead of the website pages. Therefore Spam FireWall helps to reduce CPU usage of your server.
158
- [youtube https://www.youtube.com/watch?v=Eu5Zqryvj4k]
159
-
160
- = XML-RPC brute force protection =
161
- Spam FireWall can mitigate XML-RPC brute force attacks. It blocks XML-RPC attacks from bad IP addresses. This helps to prevent bruteforce attacks by a Remote Procedure Call.
162
-
163
- = No spam comments, no spam registrations, no spam contact emails, no spam trackbacks. CAPTCHA-free anti-spam for WordPress =
164
- Spam is one of the most irritating things. Spam rates are increasing every year and conventional anti-spam can no longer handle all spam bots. CleanTalk prevents and automatically blocks spam. You'll be surprised how effective CleanTalk is in protecting from spam.
165
-
166
- = AntiSpam plugin info =
167
- CleanTalk is an all-in-one antispam solution for WordPress that protects login, comment, contact and WooCommerce forms at once. You don't need to install separate antispam plugins for each form. It allows your blog to work faster and save resources. After installation you will forget about spam; your CleanTalk plugin will do all the work. You won't have to deal with spam as CleanTalk does this for you automatically.
168
-
169
- CleanTalk is a transparent antispam tool, we provide detailed stats of all incoming comments and logins. You can always be sure that **there are no errors**. We have developed a mobile app for you to see antispam stats wherever you want.
170
-
171
- We have developed the antispam for WordPress that protects you from spam bots at the maximum level allowing you to provide your visitors a simple and convenient form of comments/registrations without annoying CAPTCHAs and puzzles. CleanTalk detects spam in multistage tests allowing us to block up to 99.998% of spam bots.
172
- The anti-spam method offered by CleanTalk avoids inconvenient for communication methods (CAPTCHA, question-answer etc.), and offers to your site visitors a more comfortable one.
173
-
174
- CleanTalk is a premium anti-spam service for WordPress, the plugin works with
175
- our own CleanTalk Cloud Service. Anti Spam by CleanTalk offers a free trial, you can look at the <a href="https://cleantalk.org/price">pricing</a> here. We provide anti-spam services at the highest level. To maintain this level we cannot afford to offer a free version of our service, as this will immediately affect the quality of the providing anti-spam protection. Paying for a year of anti-spam service, you save a lot more and receive:
176
-
177
- * Up to 99.998% protection from spam bots.
178
- * Time and resources saving.
179
- * More registrations/comments/visitors.
180
- * Spam protection of the several websites at once in different CMS.
181
- * Ease in installation and using.
182
- * Traffic increase and loyalty to the users.
183
- * 24/7 technical support.
184
- * Clear stats.
185
- * Spam FireWall.
186
- * No captcha (reCaptcha), puzzles, etc.
187
- * Free mobile app to control anti-spam protection on your website.
188
-
189
- = Additional features =
190
- * Daily and weekly detailed anti-spam reports: traffic VS spam.
191
- * Apps for iPhone, Android to control anti-spam service, comments, signups, contacts, traffic and spam stats for the last 7 days.
192
- * AntiSpam apps for most popular CMS on cleantalk.org.
193
-
194
- = How to protect sites from spam bots without CAPTCHA? =
195
- The most popular anti spam method is CAPTCHA - the annoying picture with curved and sloping symbols, which are presented to the visitor to decipher and fill in. In is supposed that spam bots won't discern these CAPTCHA, but a visitor will. CAPTCHA provokes great irritation, but if the visitor wants to comment, he has to fill in these symbols time after time, making mistakes and starting once again. Sometimes CAPTCHA reminds us of the doodles of a two year old child. For users with vision problems CAPTCHA is an insurmountable obstacle. Users hate captcha. Captcha for users means "hate". Unreadable CAPTCHA stops about 80% of site visitors. After 2 failed attempts to decipher CAPTCHA 95% of visitors reject further attempts. At the sight of CAPTCHA and after input errors, many visitors leave the resource. Thus, CAPTCHA helps to protect the resource spam both from bots and visitors. CAPTCHA is not a panacea from spam. Doubts concerning the Need for CAPTCHA?
196
-
197
- *"Ultimately, CAPTCHAs are useless for spam because they're designed to tell you if someone is 'human' or not, but not whether something is spam or not." Matt Mullenweg*
198
-
199
- You do not have to work in IT to know what spam is. Besides piles of unwanted email, there are spam bots, or special software programs designed to act as human website visitors that post unwelcome messages over the Internet to advertise dubious services. More often than not spam messages do not even make sense. Similar to bacteria and virus mutations developing antibiotic resistance, spam bots are becoming more resilient in penetrating Internet firewalls and security layers.
200
-
201
- = CleanTalk's features =
202
- Anti-Spam by CleanTalk with Spam FireWall is one of the fastest plugins that allows you to lower the server load. One of the important parameters for each webmaster is the speed of the site, so we make sure that our plugin consumes as few server resources as possible. The Cloud Service provides the advantage: all data processing takes place in the Cloud.
203
-
204
- CleanTalk team has developed unique anti spam algorithms to assess visitors behavior. CleanTalk analyzes user behavior and the parameters of the filled forms. Our anti-spam module, being installed in your website, sends the behavior parameters of either a visitor or a spam bot. When these parameters are estimated, the anti spam service makes a decision - to post a message or to define it as spam and reject it. Based on these checks, the service forms its own list of email addresses used by spam bots.
205
-
206
- The registrations of visitors are being checked in a similar manner. The service adds to the blacklist not just email addresses, but also IP addresses and domains of websites that promote themselves through spam mailing. All of this happens automatically and requires no action from the administration of the website. In 2.5 million queries the service makes a mistake in 40-45 cases, i.e. CleanTalk detects spam with 99.9982% accuracy. We constantly monitor these errors and make adjustments to our algorithms. Even with this exceptional accuracy our team is aiming to improve the figures over time.
207
-
208
- All-in-one. CleanTalk protects form spam all forms instantaneously - comments, registrations, feedback, contacts. No need to install additional plugins for each form. You save resources and increase performance of your website.
209
-
210
- Spam attacks log. Anti-Spam by CleanTalk records all filtered comments, registrations and other spam attacks in the "Log of spam attacks" and stores the data in the log for up to 45 days. Using the log, you can ensure reliable protection of your website from spam and experience no false/positive filtering.
211
-
212
- With the help of anti-spam by CleanTalk you can check existing comments and users, to find and quickly delete spam comments at once. This allows administrators of websites to automatically check and identify spam bots, comments and users, which were not detected by conventional anti-spam tools. The existing comments and users checking process is performed in a database of the nearly 2 million identified spam bots. Detailed spam stats allows CleanTalk customers to fully control it.
213
-
214
- CleanTalk has an advanced option "Spam FireWall". This option allows you to block the most active spam bots before they get access to your website. It unloads you website pages when an attempt attack was made, so your web server won't run unnecessary scripts on these pages. Also it prevents any scanning of website pages by spam bots. Subsequently Spam FireWall significantly reduces your webserver load. Spam FireWall can mitigate HTTP/HTTPS DDoS attacks. When an intruder makes GET requests to attack your website, Spam FireWall will block requests from bad IP addresses. Your website gives the intruder a special page with a description of DDoS rejection instead of the website pages. Spam FireWall can help to reduce the CPU usage of your server because of this reason.
215
-
216
- "CleanTalk team has been developing a cloud spam protection system for five years and has created a truly reliable anti-spam service designed for you to guarantee your safety".
217
-
218
- = White Label Mode =
219
-
220
- To switch the plugin work in the white-label mode you should set up a few settings on your main site in Wordpress Multisite Network:
221
-
222
- 1. Check setting "Enable White Label Mode".
223
- 2. Fill "Hoster API Key" field with key from CleanTalk's hoster panel.
224
- 3. Fill "Plugin name" field. It could be any name you want for the plugin.
225
- 4. Save settings.
226
-
227
- The plugin will do everything rest.
228
-
229
- = Auto-Update CleanTalk AntiSpam =
230
-
231
- CleanTalk Dashboard allows you to set auto-update plugin and select several websites and update the plugin at once on all sites by one click or you can setup auto-update for all websites or separate websites.
232
-
233
- Note: there is 24 hours delay before auto-update will do. This delay allows needing to avoid any issues. All updates that made through CleanTalk Dashboard manually will do immediately.
234
-
235
- Auto-updating system will work from CleanTalk AntiSpam version 5.88
236
-
237
- = Real-time email validation. Is email real or Not. =
238
- It is very important to be sure that the user used his real email address. Spambots very often use fake email addresses, i.e. which addresses do not exist.
239
-
240
- CleanTalk will check email addresses for existence in real time.
241
-
242
- Non-existing email addresses also entail several other problems for website owners.
243
-
244
- * You can never contact them by email,
245
- * the client will never receive any notifications from you (account activation letter, password recovery, email distribution, notifications, etc.),
246
- * if you use email marketing for your clients, then a large number of nonexistent emails in the mailing list may result in your IP address being added to various blacklists of email servers.
247
-
248
- Improve your email list with email validation without fake emails.
249
-
250
- = Blocking disposable & temporary emails =
251
-
252
- Block fake and suspicious users with disposable & temporary emails to improve email delivery. So, it also prevents malicious activity, spam bots, and internet trolls.
253
-
254
- = Stops Spam in Search Form =
255
-
256
- Spam bots can use your search form to make a GET request with spam text.
257
- CleanTalk Anti-Spam has the option to protect your website search form from spam bots. Each time, the search generates a new page and if there are many requests, this can create additional load. So, under some conditions, spam searches can be indexed, which affects SEO,
258
-
259
- * Spam FireWall blocks access to all website pages for the most active spambots. It lowers your web server load and traffic just by doing this.
260
- * Anti-Spam protection for website search forms repels spambots.
261
- * If your search form gets data too often the CleanTalk Anti-Spam plugin will add a pause and increase it with each new attempt to send data. It saves your web server processor time.
262
- * Spam protection allows you to not forbid indexation for the crawler bots if you really need it but simultaneously you will get protection from spambots.
263
-
264
- You will always know what users were looking for on your site.
265
-
266
- = Disable comments =
267
-
268
- This option disables comments on your site. You can choose one or several options:
269
-
270
- * Disable comments for posts
271
- * Disable comments for pages
272
- * Disable comments for media
273
-
274
- When using Disables comments, existing comments will not be deleted and will remain on the pages.
275
-
276
- = Translations =
277
- * Albanian (sq_AL) - thanks to fjalaime https://wordpress.org/support/users/fjalaime/
278
- * French (fr_FR) - thanks to Gilles Santacreu http://net-ik.net
279
- * Spanish (es_ES) - thanks to Andrew Kurtis and WebHostingHub
280
-
281
- = Requirements =
282
- WordPress 3.0 at least. PHP 5 with CURL or file_get_contents() function and enabled 'allow_url_fopen' setting. The plugin is fully compatible with PHP 7.
283
-
284
- > Max power, all-in-one, premium anti-spam WordPress plugin. No comments & registrations spam, no contact spam, protects any forms. Just install and forget spam.
285
-
286
- == Installation ==
287
-
288
- = Installation instructions =
289
-
290
- 1. Download, install and activate 'Anti-spam by CleanTalk'.
291
-
292
- 2. Get Access key <a href="https://cleantalk.org/register?platform=wordpress" target="_blank">https://cleantalk.org/register</a>
293
-
294
- 3. Enter Access key in the settings: WordPress console -> Settings -> Antispam by CleanTalk
295
-
296
- 4. Do dummy spam comment (registration or contact message) with email **stop_email@example.com**. You should see notice: **Forbidden. Sender blacklisted.**
297
-
298
- 5. Done! The plugin is ready to use.
299
-
300
- = Video guide - Anti-Spam Plugin Installation in WordPress. =
301
-
302
- [youtube https://www.youtube.com/watch?v=SktF0s-go6A ]
303
-
304
- **Important!** To test spam protection you must post a dummy submissions as website visitor (use must logged out from WordPress console), because the plugin doesn't filter submissions from WordPress administrators.
305
-
306
- = How can setup plugin in WPMU version? =
307
- In WordPress multisite version you can switch the plugin to use Global Access key. In this way the plugin doesn't show any options to enter Access key in plugin settings and doesn't show Trial banner in WordPress backend. To setup global CleanTalk access key for all websites in WPMS, define constant in your wp-config.php file before defining database constants:
308
-
309
- define('CLEANTALK_ACCESS_KEY', 'place your key here');
310
-
311
- **Make it before you activated the plugin. If the plugin already activated, deactivate it and add the code and active it again.**
312
- Now, all subsites will have this access key.
313
-
314
- = Manage and control spam protection =
315
-
316
- Go to <a href="https://cleantalk.org/my" target="_blank">Dashboard</a> at the cleantalk.org or use <a href="https://play.google.com/store/apps/details?id=org.cleantalk.app">Android</a>, <a href="https://itunes.apple.com/us/app/cleantalk/id825479913?mt=8">iPhone</a> anti-spam app to manage and control spam protection.
317
-
318
-
319
- == Frequently Asked Questions ==
320
-
321
- = Why are they spamming me? =
322
- Spammers want to get backlinks from your site to improve their site's PageRank or redirect your visitors to malicious sites.This level of spam can damage your reputation with readers and commentators if you fail to tackle it. It is not uncommon for some WordPress websites to receive hundreds or even thousands of comments every week. However, by using a CleanTalk plugin, spam can be easily handled by your WordPress website.
323
-
324
- = Is the anti-spam protection safe for mobile visitors? =
325
- Yes, it is. The plugin doesn't block mobile visitors as well as desktop website visitors. It uses several independent anti-spam tests to decrease the number of false outcomes and to have as low false-positive rate as possible. Multiple anti-spam tests help to avoid false/positive blocks for real website visitors even if one of the tests failed.
326
-
327
- = What does the plugin do with spam comments? =
328
- Spam comments are being moved to SPAM folder by default or you can set the option to ban spam comments silently.
329
-
330
- = How can I test the anti-spam protection? =
331
- Please use the email **stop_email@example.com** for comments, contacts or signups to see how the anti-spam protection works. Also you can see the logs for the last 7 days at the <a href="http://cleantalk.org/my/show_requests">Control panel</a> or look at the folder "Spam" for banned comments.
332
-
333
- = Is the plugin effective against spam bots? =
334
- The plugin Anti-Spam by CleanTalk stops up to 99.998% of spam comments, spam signups (registrations), spam contact emails, spam subscriptions, spam bookings or spam orders.
335
-
336
- = Does the plugin protect from brute force, DoS attacks and spam attacks? =
337
- Yes, it does. Please turn the option 'Spam FireWall' on in the plugin settings to protect your website from DoS/DDoS, XML-RPC attacks.
338
-
339
- = How does the plugin stop spam? =
340
- Please, note - administrator's actions are NOT being checked.
341
-
342
- The plugin uses several simple tests to stop spammers:
343
-
344
- 1. **JavaScript anti-spam test.** 99% of spam bots don't have full JavaScript functions support. So, the plugin has the code which can be run by normal visitor and can't be run by the spam bot.
345
- 1. **Email, IP, domain spam activity list entries check.** The plugin uses spam activity database online at cleantalk.org, consisting of more than 20 billion spam activity records of IPs, Emails, Domains and ASN. If the sender's IP or Email is in the database, the sender gets some spam scores. To reduce false/positive rate the plugin not only uses the blacklist test to ban spammers, the sender will be banned when and only when multiple spam tests have been failed.
346
- 1. **Comment submit time.** Spam bots usually submit the info immediately after the page has been loaded, this happens because spam bots don't actually fill the web form, they just send $_POST data to the blog. The normal visitor sends the data after several seconds or minutes.
347
-
348
- = Will the anti-spam plugin protect my theme? =
349
- Yes, it will. The Anti-spam by CleanTalk is compatible with any WordPress theme.
350
-
351
- = What about pingback, trackback spam? =
352
- The plugin passes pingbacks without any checks by default. All trackbacks will be blocked if the sender had spam activity.
353
-
354
- = Can I use CleanTalk with Akismet? =
355
- Sure, you can use CleanTalk with Akismet. In this case you will probably have higher false/positive rate (when legitimate comments/signups are being denied), but you will have stronger anti-spam protection on your website.
356
-
357
- = Is CleanTalk better than Akismet? =
358
- Please look at this features comparison here https://cleantalk.org/cleantalk-vs-akismet
359
-
360
- = Can I use CleanTalk to remove pending spam comments? =
361
- Yes, you can. The plugin has the option to test all pending comments via database of <a href="https://cleantalk.org/blacklists">spam active IP/Email</a>, found spam comments will be moved to Trash folder.
362
-
363
- = How does the plugin find spam in pending comments or registered accounts? =
364
- The plugin checks all non-spam comments in the blacklist database and shows you those senders who have spam activity on other websites.
365
- There are some differences between blacklist database and API to protect you from spam bot registrations/comments online. Blacklists show all history of spam activity, but our API (which is used in spam tests) relies on other parameters too: last day of activity, number of spam attacks during the last days etc. These mechanisms help us to reduce the number of false outcomes. So, there is nothing strange, if some emails/IPs are not found by bulk comments/accounts test.
366
-
367
- To check comments please go here:
368
- > WordPress console -> Comments -> Find spam comments
369
-
370
- To check users please go here:
371
- > WordPress console -> Users -> Find spam users
372
-
373
- = Should I use other anti-spam tools (Captcha, reCaptcha and etc.)? =
374
- CleanTalk stops up to 99.998% of spam bots, so you can disable other anti-spam plugins (especially CAPTCHA-type anti-spam plugins). In some cases several anti-spam plugins could conflict with each other, so it would be better to use just one plugin.
375
-
376
- = Is the plugin compatible with WordPress MultiUser (WPMU or WordPress network)? =
377
- Yes, the plugin is compatible with WordPress MultiUser. Each blog in multisite environment has individual anti-spam options for the protection from spam bots.
378
-
379
- = After the installation I noticed that the number of spam attacks has been increased in the stats =
380
- There are a few reasons for this:
381
-
382
- * With the indexing of your web-site by the search systems, appearance of external links and better search results position, your web-site attracts more and more spambots.
383
- * Non-transparent protection systems like CAPTCHA or question/answer, that don't have spam attacks stats, don't let you see the whole picture, or the picture is incomplete.
384
- * Counting methods for spam attacks and spam bots are different for different systems, thus the diversity appears. We seek to provide detailed stats.
385
-
386
- = Why my dummy "spam" comment passed to the WordPress? =
387
- The plugin has several options to detect spam bots and humans. If you just post spammy text like this:
388
-
389
- "I want to sell something", "Buy something here.." and etc
390
-
391
- the comments will be passed, because the plugin detects sender as a human. So, use special email *stop_email@example.com* to test the anti-spam functionality or wait a few days to see how the plugin works.
392
-
393
- = Is it free or paid? =
394
- The plugin is free and distributed under the GPLv2 license.
395
-
396
- CleanTalk anti-spam plugin works with a cloud base anti-spam service and this plugin is a Software as a service (SaaS).
397
- CleanTalk it’s a free plugin that works with premium Cloud Anti-Spam service.
398
- https://en.wikipedia.org/wiki/Software_as_a_service
399
-
400
- The fact that the plugin works with a premium type service is mentioned in the plugin annotation and in its WordPress catalog description.
401
-
402
- We are ready to help you with any issue regarding CleanTalk. There are hundreds of environment compositions and we do our best to cover as many as possible.
403
-
404
- = Can I use CleanTalk with cache plugins? =
405
- Anti-spam by CleanTalk doesn't use static HTML code in its templates, so all anti-spam functions work correctly with any WordPress cache plugins.
406
-
407
- = Does the plugin protect from spam bots if I use forms with third-party services? =
408
- Yes, it does. Plugin protects web-forms on your websites which send data to third-party servers (like MailChimp). To enable this protection set the option 'Protect external forms' in the plugin settings.
409
-
410
- = Does CleanTalk compatible with Cloudflare? =
411
- CleanTalk is fully compatible with CloudFlare. Service doesn't filter CloudFlares IP's (AS13335) through blacklists database, so in this case plugin/service filters spam bots using other anti-spam tests.
412
-
413
- = Is CleanTalk compatible with a content delivery network (CDN)? =
414
- Yes, it is. CleanTalk works with any CDN system, i.e. CloudFlare, MaxCDN, Akamai.
415
-
416
- = Can I use CleanTalk functionality in my plugins? =
417
- Yes, you can. Just use following snippet:
418
-
419
- <?php
420
- if(!function_exists('ct_test_message')){
421
- include_once( ABSPATH . '/wp-content/plugins/cleantalk-spam-protect/cleantalk.php' );
422
- }
423
- //for registration test:
424
- $res=ct_test_registration("nickname", "stop_email@example.com", "127.0.0.1");
425
- //or for some other messages (contact forms, comments etc.)
426
- $res=ct_test_message("nickname", "stop_email@example.com", "127.0.0.1", "test message");
427
-
428
-
429
- $res now contents array with two parameters:
430
- * $res['allow'] - is request allowed (1) or not (0)
431
- * $res['comment'] - comment for our server's decision.
432
-
433
- = I see two loads of script cleantalk_nocache.js. Why do you use it twice? =
434
- This script is used for AJAX JavaScript checking. Different themes use different mechanisms of loading, so we use two methods for loading our script. If you absolutely know what you are doing, you can switch one of the methods off by defining constants in your wp-config.php file:
435
-
436
- define('CLEANTALK_AJAX_USE_BUFFER', false); //false - don't use output buffering to include AJAX script, true - use it
437
-
438
- or
439
-
440
- define('CLEANTALK_AJAX_USE_FOOTER_HEADER', false); //false - don't use wp_footer() and wp_header() for including AJAX script, true - use it
441
-
442
- = Can I add exclusions for some pages of my site? =
443
- Yes, you can. There is a special setting in plugin settings.
444
- You could use this guide to learn more: https://cleantalk.org/help/exclusion-from-anti-spam-checking#wordpress
445
-
446
- = Can I not send my personal data to CleanTalk servers? =
447
- Yes, you can exclude your data. There is a special setting in plugin settings.
448
- You could use this guide to learn more: https://cleantalk.org/help/exclusion-from-anti-spam-checking#WordPress_field_exclusions
449
-
450
- = How to test Spam FireWall? =
451
- Use special IP 10.10.10.10 in URL to test Spam FireWall. For example,
452
-
453
- https://cleantalk.org/blog/?sfw_test_ip=10.10.10.10
454
-
455
- Attention! The incognito mode should be enabled in your browser when you do a test. To enable incognito mode press Ctrl+Shift+N for Chrome, Opera и Safari browsers; press Ctrl+Shift+P for Firefox, Internet Explorer and Microsoft Edge. A full guide to enable Incognito mode is here: https://www.wikihow.com/Activate-Incognito-Mode
456
-
457
- = How can I enter access key in WPMU version? =
458
- To set up global CleanTalk access key for all websites in WPMU, define constant in your wp-config.php file before defining database constants:
459
-
460
- define('CLEANTALK_ACCESS_KEY', 'place your key here');
461
-
462
- Now, all subsites will have this access key.
463
-
464
- = Why is CleanTalk faster and more reliable than stand-alone solutions? =
465
- All anti-spam checks are held in the cloud and don't overload the web server. The cloud solutions have a huge advantage since the parameters are being compared with information from more than 100,000 websites.
466
-
467
- = I see a lot of blocked messages with the reason "Forbidden. Please enable JavaScript. Spam sender name." in my logs =
468
- A lot of spam bots can't perform JavaScript code, so it is one of the important checks and most of the spam bots will be blocked with the reason **"Forbidden. Please enable JavaScript. Spam sender name."** All browsers can perform JS code, so real visitors won't be blocked.
469
-
470
- If you or some of your visitors have the error **"Forbidden. Enable JavaScript."** please check JavaScript support in your browser and do this JavaScript test at this page: https://cleantalk.org/checkout-javascript-support.
471
-
472
- If you think that there is something wrong in the messages blocking, let us know about it. Please submit a support request here: https://cleantalk.org/my/support.
473
-
474
- = Does the plugin work with Varnish? =
475
- CleanTalk works with Varnish, it protects WordPress against spam, but by default the plugin generates a few cookies for the protection from spam bots and it also disables Varnish cache on pages where CleanTalk's cookies have been stored. To get rid of the issue with cache turn off the option 'Set cookies' in the plugin settings.
476
-
477
- WordPress console -> Settings -> CleanTalk -> Advanced settings
478
-
479
- Now the plugin will protect WordPress comments, registrations and most of popular contact forms, but will not protect some of rarely used contact forms.
480
-
481
- = Does the anti-spam plugin work with Accelerated Mobile Pages (AMP)? =
482
- Yes, it does. But you have to turn off the option 'Use AJAX for JavaScript check' in Advanced settigns of the plugin to be fully compatible with Accelerated Mobile Pages.
483
-
484
- = How to close renewal or trial notice in the WordPress backend? =
485
- To close the notice please save the plugin settings again or it will be closed automatically within 60 minutes after the renewal.
486
-
487
- = I'm using PHP 4.2 version and i'm getting errors related with JSON. Why does it happens? =
488
- СleanTalk is no longer supports PHP lower than 5.2 version because the support code have incompatibility with PHP 7 version. Please, upgrade your PHP. If you couldn't perform that, let us know about it via support ticket here: https://cleantalk.org/my/support.
489
-
490
- = Should I change anything in the plugin's settings or in my CleanTalk Control Panel when I switch my website from HTTP to HTTPS or vice versa? =
491
- No. You don't need to change anything in the plugin's settings or in your CleanTalk Control Panel. The plugin will work regardless of the protocol.
492
-
493
- = How to use Anti-Spam Log? =
494
- The following possibilities are available for you in the Anti-Spam Log:
495
-
496
- - Time period for all spam records you want to see.
497
-
498
- - Filter spam records by their status: Any status, Denied, Approved.
499
-
500
- - Filter spam records by your websites.
501
-
502
- - Filter spam records by country they came from.
503
-
504
- - Filter spam records by IP address, e-mail address or username.
505
-
506
- - Available options for a specific record:
507
-
508
- * Details - see item 4 below.
509
- * Spam/Not Spam - press this string if our system made wrong decision and blocked or approved a registration, a comment ot a contact form submission. More about it here: https://cleantalk.org/faq#feedback_spam
510
- * Delete - delete a record permanently.
511
- * Personal blacklists - go to your website Black&White Lists page.
512
- * Record details: block reason, body of the message, additional caught data.
513
-
514
- = Spam FireWall and AntiSpam - Networks Blocking =
515
-
516
- Anti-Spam - will blocks users from selected IP or network from using contacts/messages/registrations/comments forms.
517
- Spam FireWall - will blocks users from selected IP or network from entering the website.
518
-
519
- Please, read more here
520
- https://cleantalk.org/help/sfw-blocks-networks
521
-
522
-
523
- = Spam Comment Management =
524
-
525
- By default, all spam comments are placed in the spam folder, now you can change the way the plugin deals with spam comments:
526
-
527
- 1. **Move to the Spam folder.** All spam comments will be placed to the folder "Spam" in the WordPress Comments section except comments with Stop-Words. Stop-Word comments will be always stored in the "Pending" folder.
528
-
529
- You can prevent the proliferation of Spam folder. It can be cleaned automatically using the option "Keep spam comments for 15 days." Enable this option in the settings of the plugin: WordPress Admin Page -> Settings -> Antispam by CleanTalk -> Advanced settings -> enable "Keep spam comments for 15 days" -> Save Changes.
530
-
531
- 2. **Move to Trash.** All spam comments will be placed to the folder "Trash" in the WordPress Comments section except comments with Stop-Words. Stop-Word comments will be always stored in the "Pending" folder.
532
-
533
- 3. **Ban comments without moving to WordPress backend.** All spam comments will be deleted permanently without going to the WordPress backend except comments with Stop-Words. Stop-Word comments will be always stored in the "Pending" folder.
534
-
535
- What comments were blocked and banned can be seen in the Anti-Spam Log here: https://cleantalk.org/my/show_requests?int=week
536
-
537
- To manage the actions with spam comments, go to the Control Panel, select the website you want to change the actions for and go to "Settings" under the name of the website.
538
-
539
- Please, read more here:
540
- https://cleantalk.org/help/spam-comment-management
541
-
542
- = How do I report a missed spam bot or incorrect filter? =
543
-
544
- If you think the service has missed a spam bot or improperly filtered visitor to the website, you may notify us via the Anti-spam control panel. To do this,
545
- Log in to Control panel https://cleantalk.org/my.
546
- Click the line "Log" under the name of your website.
547
- When you mark a record as "SPAM", its e-mail and IP-address will be added to your personal blacklist for your website.
548
- When you mark a record as "Not SPAM", its e-mail and IP-address will be added to your personal white list for your website.
549
-
550
- Please, read more here
551
- https://cleantalk.org/faq#feedback_spam
552
-
553
- = Is the plugin fast? =
554
- We develop plugin to do it as optimized as possible, CleanTalk doesn't downgrade response time in backend or frontend. The plugin proccess only POST requests to WordPress core, it tackes less than 1 second to return results.
555
-
556
- = Is the plugin EU GDPR compatible? =
557
- Yes, it is. Please read this article,
558
- <a href="https://cleantalk.org/publicoffer#cleantalk_gdpr_compliance">https://cleantalk.org/publicoffer#cleantalk_gdpr_compliance</a>
559
-
560
- = Check external forms =
561
- If your website has forms that send data to external sources, you can enable option to "Protect external forms". In this case, if plugin determinates that the current message is spam, your form action will be temporary replaced to your current hostname to prevent sending false data to an external source.
562
-
563
- == Screenshots ==
564
- 1. AntiSpam settings are easy to use.
565
- 2. AntiSpam plugin rejected a spam bot at the CAPTCHA less registration form. The plugin provides explanation to visitor and websites about each rejected comment/registration or contact message.
566
- 3. Use AntiSpam analytics tool for each website in service Dashboard to have information about spam/legitimate stats.
567
- 4. Use AntiSpam log to control anti-spam plugin.
568
- 5. CleanTalk works faster than most of other anti-spam plugins.
569
- 6. The Dashboard with a map of most spam active countries per your account.
570
- 7. The plugin deletes/removes the existing spam comments and users accounts.
571
- 8. CleanTalk's dashboard update link.
572
- 9. Auto upadte confimation.
573
- 10. Website's options.
574
-
575
- == Changelog ==
576
-
577
- = 5.140 Jun 18 2020 =
578
- * New: Add SFW status in plugin settings.
579
- * Fix: Remove sleep for sfw update.
580
- * Fix: Check account status only once in 86400 seconds.
581
- * Fix: Postmark avocet theme.
582
- * Fix: Find spam users - from-till implemented.
583
- * Upd: Add common.js.
584
- * Fix: Bookly admin action excluded.
585
- * Fix: sfw_pass_key cookie domain attribute removed.
586
- * Fix: SFW no cache meta tags added.
587
- * Fix: MEC Pro plugin compatibility fixed.
588
- * Mod: Catching SpamFireWall update errors.
589
- * Fix: UltimateBuilder skip fields.
590
- * Fix: Strip tags on comment.
591
-
592
- = 5.139 Jun 02 2020 =
593
- * Fix: Profile link fixed.
594
- * Fix: WPMS plugin name fixed.
595
- * Fix: WPMS plugin settings link fixed.
596
- * Fix: Integration with Easy Forms for Mailchimp.
597
- * Fix: JS check on the registration form.
598
- * Fix: Double JS attaching on the login page.
599
- * Fix: Clear SpamFireWall table. Throw error if failed.
600
- * Upd: Cookies attr "samesite" added.
601
- * New: Users checking result icons added.
602
- * Upd: Whitelists support added for SFW.
603
- * Fix: Clear users meta everywhere by complete deactivation.
604
- * New: Comment notification updated - blacklist links added.
605
- * Fix: PHP Warning in cleantalk-pluggable.php.
606
- * Fix: White Label mode is not accessible if CLEANTALK_ACCESS_KEY is defined.
607
- * Fix: Deprecated condition.
608
- * Fix: Setting layout for the right to left direction languages.
609
-
610
- = 5.138.1 May 20 2020 =
611
- * Fix: Ninja Forms. Spam submissions.
612
-
613
- = 5.138 May 14 2020 =
614
- * Fix: Scan users fixed.
615
- * Fix: Notice fixed (Creating default object from empty value).
616
- * Fix: Creating table for SFW data for child blogs on WPMS.
617
- * Upd: SFW query optimized.
618
- * Fix: Adding cleantalk_spamscan_logs table for each blog when updating from 5.137.2.
619
- * New: White Lists for SFW implemented.
620
- * Fix: correct comments checking status text.
621
- * Fix: Users scan. Reducing memory load.
622
- * Fix: "Capture Buffer" settings. The issue with YoastSEO.
623
- * Fix: SFW query fixed.
624
- * Fix: SFW die page fixed.
625
- * Fix: Membermouse API false positives.
626
- * Fix: gz*() functions calling from global namespace for now.
627
-
628
- = 5.137.1 April 29 2020 =
629
- * Fix: Call to undefined function wp_get_current_user().
630
- * Fix: "Capture buffer" setting, YOAST sitemap.
631
- * Integration: Simple Membership plugin integration implemented.
632
- * Fix: Integrations system fixed.
633
- * Fix: Query for SFW fixed.
634
- * Fix: SFW error handling.
635
-
636
- = 5.137 April 23 2020 =
637
- * Fix: WPMU and WhiteLabel mode fixed.
638
- * Fix: 403 Response code for blocked entries.
639
- * Upd: SFW die page updated (spinner and delay).
640
- * New: SFW query updated.
641
- * Fix: SFW truncate instead of delete.
642
- * Fix: AJAX exception for WordPress Membership Plugin – Restrict Content.
643
- * Fix: Check spam users.
644
- * Fix: Debug functionality for users check.
645
- * Fix: Gravity Forms. Modifying message.
646
- * Fix: Sanitizing settings.
647
- * Fix: "Delete all spam users" button.
648
-
649
- = 5.136.4 April 8 2020 =
650
- * Security: Possible XSS vulnerability.
651
-
652
- = 5.136.3 April 7 2020 =
653
- * Security: Possible XSS vulnerability.
654
-
655
- = 5.136.2 April 7 2020 =
656
- * Mod: bbPress is using role exclusions now.
657
- * Mod: Show info on SpamFirewall block page.
658
- * Mod: Log SpamFirewall tests.
659
- * Fix: get_fields_any() fixed.
660
- * Fix: Multiple requests on WooCommerce checkout.
661
- * Fix: The SpamFirewall block page.
662
-
663
- = 5.136.1 April 2 2020 =
664
- * Mod: Setting "Show links to check Emails, IPs for spam" splitted in two.
665
- * Mod: Added setting "Manage comments on public pages".
666
- * Fix: Feedback from public pages.
667
- * Fix: Output for setting "Manage comments on public pages".
668
- * Fix: Public widget errors.
669
-
670
- = 5.136 April 1 2020 =
671
- * New: Feature allowing to track missed spam requests with the special plugin.
672
- * Mod: Enable WooCommerce checkout test by default.
673
- * Fix: Fluent forms integration fixed.
674
- * Fix: Logging skipped requests - actions added.
675
- * Fix: Comments output.
676
- * Fix: External forms protection.
677
- * Fix: PHP 7.4 compatibility.
678
- * Performance improved.
679
-
680
- = 5.135 March 16 2020 =
681
- * New: Setting which disallow sub-sites administrators to manage plugin settings.
682
- * New: Add custom title for message.
683
- * Mod: New headers for spam scan tabs.
684
- * Fix: ARM form login check.
685
- * Fix: For GET requests in HTTP API.
686
- * Fix: Getting variables in Get and Server classes.
687
- * Fix: SFW update system.
688
- * Fix: Empty connection error in Cleantalk/Antispam/API.
689
-
690
- = 5.134 February 27 2020 =
691
- * Fix: SpamFireWall update large data issues.
692
- * Fix: Auto-update for some banner notifications.
693
- * Fix: QuickContactForm protection.
694
- * Minor fixes.
695
- * Spam protection improved.
696
-
697
- = 5.133.2 February 10 2020 =
698
- * Fix: Add no-index meta tag to search page only.
699
- * Fix: Namespace issues.
700
-
701
- = 5.133.1 February 03 2020 =
702
- * Fix: PHP 7.4 issues.
703
- * Fix: Woocommerce options moved to a separate block.
704
- * Fix: CSS/HTML issues on settings page.
705
- * Minor fixes.
706
- * Spam protection improved.
707
-
708
- = 5.133 January 20 2020 =
709
- * Upd: Rebuilding users/comments scan
710
- * Fix: UltimateMember - form validation checking fixed.
711
- * Fix: Exclusion for login form.
712
- * Fix: Disable scripts on excluded pages.
713
- * Fix: PHP 7.4 compability.
714
- * Minor fixes.
715
- * Spam protection improved.
716
-
717
- = 5.132.3 December 19 2019 =
718
- * Fix: The disable comments functionality.
719
-
720
- = 5.132.2 December 17 2019 =
721
- * Fix: The disable comments functionality.
722
-
723
- = 5.132.1 December 17 2019 =
724
- * Fix: Fatal PHP error.
725
-
726
- = 5.132 December 17 2019 =
727
- * Fix: PHP 7.4 compability
728
- * New: Settings and description for "disable comments" functionality.
729
- * Mod: WooCommerce settings moved to separate block.
730
- * Minor fixes.
731
- * Spam protection improved.
732
-
733
- = 5.131 December 6 2019 =
734
- * Fix: WooCommerce registration.
735
- * Fix: Auto update on Wordperss Multisite.
736
- * Fix: URLs exceptions validation.
737
- * New: Secuirty improved.
738
- * Spam protection is improved.
739
- * Minor fixes ond improvments.
740
-
741
- = 5.130.1 November 20 2019 =
742
- * Fix: Plugin autoupdate issues.
743
- * FIx: Woocommerce checking.
744
- * Fix: Correct IP detection.
745
- * Fix: CSV export not working after update.
746
- * Fix: QuickForms duplicates issues.
747
-
748
- = 5.130 November 14 2019 =
749
- * Fix: JetPack contact form JS check.
750
- * FIx: Iphorm AJAX form.
751
- * Fix: Paid Memberships Pro fix.
752
- * Fix: Divi theme contact form fix.
753
- * Integration: Paid Memberships Pro.
754
- * Integration: Elementor Pro page builder forms.
755
- * Improved: Compatibility with different server.
756
-
757
- = 5.129.1 November 5 2019 =
758
- * Fix: WooCommerce order detecting.
759
-
760
- = 5.129 October 30 2019 =
761
- * Upd: Localize updated.
762
- * Fix: Direct $_SERVER access replaced.
763
- * Integration: The 7 theme contact form.
764
- * Fix: Minor improvements and bug fixes.
765
- * Mod: Putting site in maintenance mode during plugin update.
766
-
767
- = 5.128.1 October 23 2019 =
768
- * Fix: Fatal error when using buffer output.
769
- * Fix: Translate domain for errors.
770
- * Code: Fix spelling in function name.
771
- * Fix: JS disabled error.
772
- * Upd: Comment edit screen updated.
773
- * Fix: Cleantalk\Arr::search() fixed.
774
-
775
- = 5.128 October 17 2019 =
776
- * Mod: Users check - functionality updated.
777
- * Fix: Users check - dates format updated.
778
- * Mod: Comments check - functionality updated.
779
- * Fix: Comments check - dates format updated.
780
- * Fix: Fields exclusion fixed.
781
- * Fix: Notice fixed.
782
- * Fix: Cleantalk/Antispam/API.
783
- * Fix: Minor improvements and bug fixes.
784
-
785
- = 5.127.4 October 13 2019 =
786
- * Mod: Automatically decrease amount of checked users by one request if an error occurs.
787
- * Fix: Security issue.
788
- * Fix: Static JS key.
789
-
790
- = 5.127.3 October 8 2019 =
791
- * Fix: Errors during registration.
792
-
793
- = 5.127.2 October 8 2019 =
794
- * Integration: SeedProd Coming Soon Page Pro.
795
- * Fix: WooCommerce double reuqests.
796
- * Fix: Static JS key.
797
-
798
- = 5.127.1 October 7 2019 =
799
- * Fix: WPMS settings logic.
800
- * Using default database storage engine for tables.
801
-
802
- = 5.127 September 30 2019 =
803
- * Fix: Delete redirect notice on external forms
804
- * Fix: Storing spam for 15 days.
805
- * Fix: correct DiVi display message.
806
- * Integration: Ultimate Members.
807
- * Mod: Setting "Use static JS key" switched to "Auto" if it was "No". Default is "Auto".
808
- * Mod: Moving White Label option to main site settings.
809
- * New: Use static JS key if cache plugin detected.
810
- * New: Settings for URLs, fields, roles exclusions.
811
- * New: Regular Expressions support in URLs, fields exclusions.
812
- * New: Send validation errors on standard registration form.
813
- * Updater: Move exclusions from global variable to settings.
814
- * Deprecated: IP exclusions.
815
-
816
- = 5.126 September 9 2019 =
817
- * Spam protection improved!
818
- * Integration: Option wheel.
819
- * Mod: Improved Email detection.
820
- * Mod: Improved IP detection.
821
- * Fix: Too large database table with alternative sessions.
822
- * Fix: Exception for WooCommerce AJAX.
823
- * Fix: API key validation.
824
- * Minor fixes.
825
-
826
- = 5.125 August 26 2019 =
827
- * Fix: PHP Notices.
828
- * Fix: Auto update.
829
- * Fix: Displaying protection status for IP license.
830
- * Fix: prevent capturing buffer for XMLRPC requests (check_external functionality).
831
- * Fix: API key validating.
832
- * New: Complete deactivation setting.
833
-
834
- = 5.124.1 August 8 2019 =
835
- * Fix: Error on PHP 5.3.
836
-
837
- = 5.124 August 8 2019 =
838
- * Spam protection improved.
839
- * Fix: SpamFireWall local database counter on Multisite.
840
- * Fix: Caldera Forms integration.
841
- * Fix: Settings "Use AJAX for JS check" description.
842
- * Fix: Formidable integration.
843
- * New: External forms check now independed from JavaScript.
844
- * New: Setting Protect external - capture buffer.
845
- * New: QuForm integration.
846
-
847
- = 5.123 July 25 2019 =
848
- * Fix: Plenty of minor fixes.
849
- * Fix: wpDiscuz integration.
850
- * Fix: Integration with bbPress.
851
- * Fix: New comment email notification.
852
- * New: Follow-Up Emails integration.
853
- * Fix: Woocommerce integration.
854
- * Fix: Spelling.
855
-
856
- = 5.122 July 10 2019 =
857
- * Spam Protection improved.
858
- * Fix: Error while checking account status.
859
- * Fix: Conflict with Elementor Pro.
860
- * Fix: Integration with Ninja Forms.
861
- * Fix: Integration with Formidable.
862
- * New: Detecting mobile devices.
863
- * New: Integration for Easy Forms for Mailchimp.
864
-
865
- = 5.121 June 26 2019 =
866
- * Fix: Translation typos.
867
- * Fix: Woocommerce integration.
868
- * Fix: Catching admin in AJAX queries.
869
- * Mod: Session table (cleantalk_sessions) issue.
870
- * Mod: Spam protection improved.
871
- * Integration: Wilcity theme custom registration validation enabled
872
- * New: Option "Use static JS key".
873
-
874
- = 5.120.2 June 17 2019 =
875
- * Fix: WPForms integration.
876
- * Fix: Translation and spelling.
877
- * Fix: Minor PHP error
878
-
879
- = 5.120.1 June 6 2019 =
880
- * Mod: Description for Search form protection.
881
- * Fix: CSS and JS attachment.
882
- * Fix: Undefined index error.
883
-
884
- = 5.120 June 5 2019 =
885
- * Fix: bbPress false positives.
886
- * Fix: SpamFireWall check condition.
887
- * Fix: SpamFireWall block page.
888
- * Fix: Catch admin action via search form test.
889
- * Fix: Catch admin action (AJAX).
890
- * Mod: Using minified version of JS and CSS.
891
- * Mod: Date format in statistics.
892
-
893
- = 5.119.1 May 30 2019 =
894
- * Fix: Helper class error.
895
-
896
- = 5.119 May 30 2019 =
897
- * Fix: No more second request after registration.
898
- * Fix: Activation hook.
899
- * Fix: Alternative sessions. Clear table.
900
- * Fix: Stop capchuring AJAX requests in admin area.
901
- * Fix: Spelling.
902
- * Fix: Registration cookies set.
903
- * Mod: SFW exdtended die page when testing.
904
- * Mod: User-agent modified.
905
- * New: Test search queries for spam.
906
- * New: Gathering and output statistics.
907
-
908
- = 5.118.4 May 13 2019 =
909
- * Fix: SFW cookie. Set correct domain for subdomains.
910
- * Fix: SFW update.
911
- * Fix: IP detection.
912
- * Fix: Triggering AJAX check in backend.
913
- * Fix: Zero submit time on few forms.
914
-
915
- = 5.118.3 April 29 2019 =
916
- * Fix: Spam statistics in dashboard widget.
917
- * Fix: IP detection.
918
- * Fix: Double check AJAX integrated forms like Ninja Forms.
919
- * Fix: Use url exclusions for AJAX forms.
920
-
921
- = 5.118.2 April 25 2019 =
922
- * Mod: Spam filtration quality improved.
923
- * Mod: Store SFW cookie for 30 days.
924
- * Mod: Server IP added to connection report.
925
- * Fix: spam_stat is not defined.
926
-
927
- = 5.118.1 April 19 2019 =
928
- * Fix: Fatal error.
929
- * Mod: Spam protection improved on registrations.
930
-
931
- = 5.118 April 19 2019 =
932
- * Fix: Cookies on registration page.
933
- * Fix: Update fix.
934
- * Fix: Wordpress built-in API.
935
- * Fix: WooCommerce checkout form.
936
- * Fix: UpdraftPlus. Saving settings.
937
- * Fix: Convert Pro saving settings.
938
- * Fix: UTF-8 Converting.
939
- * Fix: GDPR notice.
940
- * Fix: cleantalk_sessions table size reduced.
941
- * Mod: Localization.
942
- * Mod: Performance improved.
943
- * Mod: SpamFierWall improvments.
944
- * Mod: IP detection improved.
945
- * Mod: JavaScript check rewised.
946
- * New: Setting "Use alternative mechanism for cookies".
947
-
948
- = 5.117.1 April 5 2019 =
949
- * Fix: GDPR notice.
950
- * Fix: noCacheJS localization.
951
- * Fix: Fatal error when updating.
952
-
953
- = 5.117 March 27 2019 =
954
- * New: Update logic runs on all pages.
955
- * New: Integration for Ajax Contact Forms plugin.
956
- * New: Notification for users groups about new comments.
957
- * New: SFW die page. Show browser and page creation time.
958
- * Fix: Huge bug in Cleantalk.php connected with servers changing.
959
- * Fix: Check AJAX requests for logged in users.
960
- * Fix: Deleting debug in JS.
961
- * Fix: Validating settings before saving.
962
-
963
- = 5.116.3 March 14 2019 =
964
- * Fix: "Headers already sent" error.
965
- * Fix: Images paths.
966
- * Fix: IP detection.
967
- * Fix: Skip lost password form check
968
- * Fix: Skip mobile requests (push settings)
969
- * Fix: PHP notice when detecting BuddyPress template.
970
-
971
- = 5.116.2 March 7 2019 =
972
- * Fix: Creating tables in MariaDB.
973
-
974
- = 5.116.1 March 6 2019 =
975
- * Fix: Creating tables in DB.
976
- * Fix: PHP Warning in spam statistics widget.
977
-
978
- = 5.116 March 6 2019 =
979
- * Spam filtration quality improved.
980
- * New: Storing visited URLs.
981
- * New: Check before validation Contact Form 7, Comments, Jetpack comments.
982
- * New: Get validation result for Contact Form 7, Comments, Jetpack comments.
983
- * Fix: ES add subscriber.
984
- * Fix: IP detection.
985
-
986
- = 5.115.2 February 27 2019 =
987
- * Fix: False positives spam detection in WP Forms and Contact Form 7.
988
-
989
- = 5.115.1 February 16 2019 =
990
- * Fix: SpamFireWall's false positives.
991
-
992
- = 5.115 February 14 2019 =
993
- * Fix: Http_only flag for backend cookies.
994
- * Fix: Spam filtration improved.
995
- * New: IP detection improved.
996
- * Fix: SpamFirewall update speeded up.
997
- * New: False positives with caching solutions decreased.
998
- * New: Opportunity to use Wordpress HTTP API to connect with Cloud.
999
-
1000
- = 5.114 January 31 2019 =
1001
- * New: Setting "Use Wordpress HTTP API" as alternative to CURL. Disabled by default.
1002
- * Fix: Formidable: Adding small JS check when adding JS_key.
1003
- * Mod: layout of settings page.
1004
- * Mod: Banner logic altered.
1005
-
1006
- = 5.113.2 January 18 2019 =
1007
- * Fix: "Settings" link returns to plugin page.
1008
-
1009
- = 5.113.1 January 17 2019 =
1010
- * Fix: Conflict with CityTours theme.
1011
- * Fix: Error for Wordpress lower 4.7.
1012
- * Add: Spam protection: "Validate email for existence".
1013
-
1014
- = 5.113 January 16 2019 =
1015
- * Fix: Fast and Simple Contact Form.
1016
- * Fix: Settings layout.
1017
- * Fix: Error with WooCommerce Quickview.
1018
- * Fix: Bitrix24 contact form.
1019
- * Fix: Request time decreased.
1020
- * Fix: Requesting account status when activating for IP licenses.
1021
- * Add: Precise AJAX request detection.
1022
- * Spam protection improved.
1023
-
1024
- = 5.112 December 21 2018 =
1025
- * Fix: Woocommerce AJAX checkout form.
1026
- * Fix: Profile Builder Pro.
1027
- * Fix: DB structure improvements for WPMS.
1028
- * Spam filtering quality improved.
1029
- * Minor fixes.
1030
-
1031
- = 5.111 December 13 2018 =
1032
- * Fix: Double request in JetPack contact form.
1033
- * Fix: Email notification about spam registration.
1034
- * Fix: Links button for feedback comments.
1035
- * Fix: Mail notification about plugin error.
1036
- * Fix: Key field output.
1037
- * Minor fixes.
1038
-
1039
- = 5.110 November 29 2018 =
1040
- * Integration: BuddyPress ActivityWall spam protection.
1041
- * Add: GDPR setting for shortcode.
1042
- * Add: Support different BuddyPress templates on activity wall.
1043
- * Fix: Admin/moderator checking for validate post data.
1044
-
1045
- = 5.109 November 15 2018 =
1046
- * Fix: Added URL and IP exclusions to Contact Form 7.
1047
- * Fix: js error when responseText is not exists
1048
- * Fix: Sitename when getting key automatically under WPMS.
1049
- * Mod: SpamFireWall is now fully compatible with WPMS.
1050
- * Mod: Setting 'Tell others about CleanTalk' was deleted.
1051
- * Mod: Protection from spam improved.
1052
-
1053
- = 5.108.1 November 8 2018 =
1054
- * Fix: Errors with integration class.
1055
-
1056
- = 5.108 November 7 2018 =
1057
- * Fix: White label mode.
1058
- * Fix: SpamFireWall now can be disabled.
1059
- * Fix: Layout.
1060
- * Integration: WPForms.
1061
- * Add: Message about block for all no integrated AJAX forms.
1062
- * Add: Displaying account name near api key.
1063
-
1064
- = 5.107 October 29 2018 =
1065
- * Fix: Ninja Forms integration.
1066
- * Fix: Cookie usage.
1067
- * Add: Capturing AJAX responses from non integrated forms.
1068
- * Spam protection improved.
1069
- * Minor fixes.
1070
-
1071
- = 5.106 October 11 2018 =
1072
- * Spam filtration improved.
1073
- * New: White Label mode.
1074
- * Modification: Warning message about test on SpamFireWall die page.
1075
- * Integration: WP Maintenance Mode.
1076
- * Fix: S2Member.
1077
- * Fix: JavaScript attachments reconsidered.
1078
- * Fix: Admin banners layout.
1079
- * Fix: Minor layout fixes.
1080
-
1081
- = 5.105 September 26 2018 =
1082
- * Integration: Now bloking spam for QAEngine questions.
1083
- * Fix: Async http__request call.
1084
- * Fix: Unnecessary get_antispam_report_breif method call.
1085
- * Layout: Hide "Do you like Cleantlak?" when key is not ok.
1086
- * Layout: Minor fixes.
1087
-
1088
- = 5.104 September 18 2018 =
1089
- * Fix: Error when saving settings.
1090
- * Fix: Trying update anti spam plugin for the first installation.
1091
- * Fix: Update system.
1092
- * Fix: Errors output.
1093
- * Fix: Plugin's settings under WPMS.
1094
- * Fix: SpamFireWall update.
1095
- * Fix: The server change system repaired.
1096
- * Mod: Cron saving tasks improved.
1097
-
1098
- = 5.103.1 September 14 2018 =
1099
- * Fix: Error when saving settings.
1100
- * Fix: Error when getting key automatically.
1101
-
1102
- = 5.103 September 13 2018 =
1103
- * Fix: Gravity Forms response message.
1104
- * Fix: SpamFireWall redirect to 404 page.
1105
- * Major anti-spam plugin improvement.
1106
- * Recombined setting page.
1107
- * Added error notification.
1108
- * Mod: S2 Members integration.
1109
- * Mod: Improved remote calls.
1110
-
1111
- = 5.102 August 29 2018 =
1112
- * Fix: Users and comments check.
1113
- * Fix: Update from 5.70 or previous versions.
1114
- * Fix: GDPR public JS-script.
1115
- * Fix: Dashboard widget JS scripts attachment.
1116
- * Fix: WooCommerce "Place order" action.
1117
- * Mod: Notification logic altered.
1118
- * Mod: Users check table now has 'Signed up' column.
1119
- * Minor fixes.
1120
-
1121
- = 5.101 August 10 2018 =
1122
- * Fix: Set cookie only for non-dashboard pages.
1123
- * Fix: Dashboard widget JS error.
1124
- * Fix: JavaScript error for some environment.
1125
- * Mod: Antispam protection accelerated for some pages.
1126
-
1127
- = 5.100 July 30 2018 =
1128
- * Fix: JavaScript dependencies.
1129
-
1130
- = 5.99.1 July 17 2018 =
1131
- * IP detection fixed and improved.
1132
-
1133
- = 5.99 July 10 2018 =
1134
- * Fix: WooCommerce false positives.
1135
- * Fix: SpamFireWall IP detection.
1136
- * Minor fixes.
1137
-
1138
- = 5.98 June 27 2018 =
1139
- * Fix: WooCommerce: Theme exclusion.
1140
- * Fix: Public GDPR JS code.
1141
- * Minor fixes.
1142
-
1143
- = 5.97 June 7 2018 =
1144
- * Fix: Update system.
1145
- * Fix: Feedback from public page (admin only).
1146
- * Fix: Users and comment check: API error.
1147
- * Fix: Too many negative reports. (Too big ct_data option)
1148
- * Fix: SpamFireWall: Infinite redirection on the blocking page.
1149
- * Minor fixes.
1150
-
1151
- = 5.96 May 22 2018 =
1152
- * Fix: Update system.
1153
- * Mod: Reset all counters button in admin bar.
1154
- * Mod: GDPR compliance.
1155
- * Minor fixes.
1156
-
1157
- = 5.95.1 May 3 2018 =
1158
- * Fix: "Get key automatically" button display logic.
1159
- * Fix: PHP notices.
1160
-
1161
- = 5.95 May 2 2018 =
1162
- * Spam filtration improved.
1163
- * Fix: Public widget layout.
1164
- * Fix: Connection reports output.
1165
- * Minor fixes.
1166
-
1167
- = 5.94 April 23 2018 =
1168
- * Mod: Async load option for JS.
1169
- * Mod: JS scripts loading is conditional.
1170
- * Fix: IP detection.
1171
- * Fix: IP detection.
1172
- * Fix: Javascript error.
1173
-
1174
- = 5.93.1 April 9 2018 =
1175
- * Fix: Fatal error on PHP 5.5 or lower.
1176
-
1177
- = 5.93 April 9 2018 =
1178
- * Fix: Spam FireWall IP detection.
1179
- * Fix: Contact Form 7. False positives.
1180
- * Mod: Autoupdate function improved.
1181
- * Minor fixes.
1182
-
1183
- = 5.92.2 March 23 2018 =
1184
- * Fix: Error if cURL extension is disabled.
1185
-
1186
- = 5.92.1 March 23 2018 =
1187
- * Fix: Spelling
1188
- * Fix: Fatal error if cURL extension is disabled.
1189
-
1190
- = 5.92 March 22 2018 =
1191
- * IP detection improved.
1192
- * Fix: SSL connection.
1193
- * Fix: False positives spam detection in Contact Form 7.
1194
- * Minor fixes.
1195
-
1196
- = 5.91 March 15 2018 =
1197
- * Fix: Errors for PHP compiled without XML support.
1198
- * Fix: Spelling and translation.
1199
- * Stability increased.
1200
- * Minor fixes.
1201
-
1202
- = 5.90 March 7 2018 =
1203
- * Improvement: Better IP recognition in Spam FireWall.
1204
- * Fix: Gravity Froms blocking message.
1205
- * Security improvments.
1206
- * Minor fixes.
1207
-
1208
- = 5.89 February 21 2018 =
1209
- * Improved spam filtration quality.
1210
- * Improved compatibility.
1211
- * Public widget: Styles and referral link added.
1212
- * Dashboard widget: revised and fixed.
1213
- * Minor fixes.
1214
-
1215
- = 5.88 February 12 2018 =
1216
- * Integration: ConvertPro.
1217
- * Improvement: Search for visitor's names in request.
1218
- * Fix: Contact Form 7 message recognition.
1219
- * Preparation for the remote plugin update.
1220
- * Minor fixes.
1221
-
1222
- = 5.87 February 2 2018 =
1223
- * Filtration quality improved.
1224
- * Fix: WP Foto Vote downloading images.
1225
- * Fix: Fatal error for unsupported PHP 5.2.
1226
- * Fix: Formidable Forms improved spam filtration.
1227
-
1228
- = 5.86 January 25 2018 =
1229
- * Fix: High CPU load with wp-ajax.php.
1230
- * Fix: Mailpoet: Newsletter.
1231
- * Fix: Gravity: Forms standardization for input fields.
1232
- * Fix: ajax hook checks data for contact form.
1233
- * Fix: UTF8 character in requests.
1234
-
1235
- = 5.85 January 11 2018 =
1236
- * Fix: Fast Secure contact form spam block message.
1237
- * Fix: IP license status.
1238
- * Layout: Dashboard widget description altered.
1239
-
1240
- = 5.84 December 26 2017 =
1241
- * Integration: PeepSo contact form
1242
- * Repared: Feedback from comments page.
1243
- * Fix: mb_* functions used only if exists.
1244
- * Fix: Gravity forms: Multi-page form logic repared.
1245
- * Fix: Gravity forms: AJAX form logic repared.
1246
- * Minor fixes.
1247
-
1248
- = 5.83.2 December 19 2017 =
1249
- * Fix: Error in base class.
1250
-
1251
- = 5.83.1 December 19 2017 =
1252
- * Fix: CDN IP detection.
1253
-
1254
- = 5.83 December 19 2017 =
1255
- * Improving: Stability and compatibility.
1256
- * Improving: Spam protection.
1257
- * Fix: Comments logic filtration.
1258
- * Fix: Admin bar counter.
1259
- * Minor errors fixes.
1260
-
1261
- = 5.82.1 December 7 2017 =
1262
- * Fixed minor error with attaching JS and CSS files.
1263
-
1264
- = 5.82 December 4 2017 =
1265
- * Plugin doesn't use PHP sessions anymore.
1266
- * Bug fixes.
1267
- * Improved update logic.
1268
-
1269
- = 5.81 November 22 2017 =
1270
- * Fixed error with "Show/Hide key" button.
1271
- * Slightly improved spam protection for all forms.
1272
- * Small errors fixes.
1273
-
1274
- = 5.80 November 3 2017 =
1275
- * Spam protection improved.
1276
- * Improved filtration quality for WooCommerce checkout.
1277
- * Minor fixes for Spam FireWall.
1278
-
1279
- = 5.79 October 26 2017 =
1280
- * Spam protection improved.
1281
- * Fixed issue with existing spam comments check.
1282
- * Added posibility to exclude IP from check.
1283
- * Minor fixes.
1284
-
1285
- = 5.78 October 16 2017 =
1286
- * Improved compatibility with themes. Changed core functions prefix.
1287
- * Fixed issue with WooCommerce checkout.
1288
- * Spam protection improved.
1289
- * Minor fixes.
1290
-
1291
- = 5.77 October 2 2017 =
1292
- * Connection report's system.
1293
- * Integration for CouponXXL Theme.
1294
- * Fixed issue with mb_* functions.
1295
- * Banners logic updated.
1296
-
1297
- = 5.76 September 20 2017 =
1298
- * Fixed issue with Spam FireWall and caching plugins.
1299
- * Banners logic updated.
1300
-
1301
- = 5.75 September 15 2017 =
1302
- * Pause feature for users/comments spam check.
1303
- * Improved protection from spam.
1304
- * Small fixes.
1305
-
1306
- = 5.74.2 September 2 2017 =
1307
- * Fix for users spam check for PHP 5.3 and lower.
1308
-
1309
- = 5.74.1 September 2 2017 =
1310
- * Fix for the update system and cloud communication.
1311
- * Added possibility to check users and comments for spam with a specific date range.
1312
-
1313
- = 5.74 August 31 2017 =
1314
- * Users and comments spam check: Two check types (fast and accurate).
1315
- * Fix for WooCommerce checkout test.
1316
- * Minor fixes.
1317
-
1318
- = 5.73 August 11 2017 =
1319
- * Fix for spam check for already existed users and comments.
1320
- * Spam FireWall updated.
1321
- * Layout fix for BT Comments.
1322
- * Minor fixes.
1323
-
1324
- = 5.72 July 27 2017 =
1325
- * Improved spam check for existed users and comments.
1326
- * Minor fixes.
1327
-
1328
- = 5.71 July 20 2017 =
1329
- * Improved spam protection for external forms.
1330
- * Optimization.
1331
- * Minor fixes.
1332
-
1333
- = 5.70.2 July 17 2017 =
1334
- * Fix for Spam FireWall for Multisite.
1335
-
1336
- = 5.70.1 July 17 2017 =
1337
- * Fix for Spam FireWall.
1338
- * Spam detection improved.
1339
-
1340
- = 5.70 July 13 2017 =
1341
- * New updater logic.
1342
- * Self cron system.
1343
- * Improved AMP compatibility.
1344
- * Optimization.
1345
- * Fixed users and comments spam check.
1346
- * Fixed layout for Comment's feedback from public page.
1347
- * Updated Spam FireWall.
1348
- * SFW: Spam FireWall counter now work in real-time.
1349
- * SFW: Improved compatibility with different Data Bases.
1350
-
1351
- = 5.69 July 3 2017 =
1352
- * Reviewer - integration.
1353
- * Optimization for Users and Comments check for big databases.
1354
- * Errors fixes.
1355
- * Improved protection from spam.
1356
-
1357
- = 5.68 June 22 2017 =
1358
- * Contact Form for WordPress - Ultimate Form Builder Lite - integration.
1359
- * Contact Bank - Contact Forms Builder - integration.
1360
- * Smart Forms - integration.
1361
- * cformsII - integration.
1362
- * Contact Form by Web-Settler - integration.
1363
- * Error fixes.
1364
-
1365
- = 5.67.3 June 9 2017 =
1366
- * Fixed JS attachment error.
1367
-
1368
- = 5.67.2 June 5 2017 =
1369
- * Fixed error with IP determination.
1370
-
1371
- = 5.67.1 June 4 2017 =
1372
- * Fixed JS error in 5.67 version.
1373
- * Integrations: Enfold theme, Convertplug.
1374
- * Links to check for Emails/IP for spam.
1375
- * Control comments and feedback about them from public post's page.
1376
- * Improved connection stability with cloud service.
1377
- * Spam protection improved.
1378
- * Other small fixes.
1379
-
1380
- = 5.67 June 1 2017 =
1381
- * Integrations: Enfold theme, Convertplug.
1382
- * Links to check for Emails/IP for spam.
1383
- * Control comments and feedback about them from public post's page.
1384
- * Improved connection stability with cloud service.
1385
- * Spam protection improved.
1386
- * Other small fixes.
1387
-
1388
- = 5.66 May 23 2017 =
1389
- * Spam protection improved.
1390
- * Major fixes for users and comments spam check.
1391
- * Added feedback from Wordpress comments list.
1392
- * Fix for "internal forms check" option.
1393
- * Fixed issue with caching Spam FireWall die page.
1394
- * Other small fixes.
1395
-
1396
- = 5.65 May 16 2017 =
1397
- * Fix for PayPal redirecton.
1398
- * Fixed issue with empty query for bulk comments test.
1399
- * Added protection for Enfold contact form.
1400
- * Ninja forms integration.
1401
-
1402
- = 5.64 April 26 2017 =
1403
- * Integration for Facebook registrations.
1404
- * Small fixes for WPMS.
1405
- * Fix for Activecampaign service.
1406
- * Fix for check spam users.
1407
- * Fixed rare notice Notice: Undefined index: REQUEST_URI
1408
-
1409
- = 5.63 April 20 2017 =
1410
- * Fix for the dashboard spam stat widget.
1411
- * Added translation posibility for all text.
1412
-
1413
- = 5.62 April 17 2017 =
1414
- * Fix for the dashboard spam statistics widget.
1415
- * Fix for users spam check.
1416
- * Small appearance changes.
1417
-
1418
- = 5.61 April 6 2017 =
1419
- * Improved filtration.
1420
- * Additional logic for the form recognizing.
1421
- * Integration: Divi Theme Contact Form.
1422
- * Fix: Gravity Forms multipages forms.
1423
- * Stat Widget: Minor fixes.
1424
- * Added possibility to download results of the users check in CSV format.
1425
- * Alteration for settings page (footer).
1426
-
1427
- = 5.60.1 March 29 2017 =
1428
- * Fixed error function 'locale_get_display_region' no exists.
1429
-
1430
- = 5.60 March 29 2017 =
1431
- * Added main dashboard widget with spam sctivity stats.
1432
- * Mailster - integration.
1433
- * Base class updated.
1434
-
1435
- = 5.59 March 24 2017 =
1436
- * Users/comments check fix.
1437
- * Plugin's name changed to Anti-Spam by CleanTalk.
1438
- * Trial banner is dismissable. Disapear for 24h or till logout.
1439
- * Settings modified (Auto testing failed warning).
1440
- * Mailing(inactive key) interval increased to 6 hours.
1441
-
1442
- = 5.58.6 March 16 2017 =
1443
- * Fix for Ninja forms (protection updated).
1444
- * Fix for QA Theme.
1445
- * Fix for RSVP form.
1446
- * Setting changes (Spam FireWall).
1447
- * Improved debug section.
1448
- * Improved gathering data function.
1449
- * Minor fixes.
1450
-
1451
- = 5.58.5 March 6 2017 =
1452
- * Minor backend fix.
1453
-
1454
- = 5.58.4 March 6 2017 =
1455
- * Users check fix (redirect after the check).
1456
- * Fixed PHP Notice "HTTP_REFERER" is unset.
1457
- * Updated Notice logic.
1458
-
1459
- = 5.58.3 February 28 2017 =
1460
- * Bitrix24 Contact form integration.
1461
- * Users/comments check fix.
1462
- * Spam sorting updated.
1463
- * Banner showing logic.
1464
-
1465
- = 5.58.2 February 17 2017 =
1466
- * Cron fix for daily report.
1467
-
1468
- = 5.58.1 February 16 2017 =
1469
- * Minor fixes.
1470
-
1471
- = 5.58 February 15 2017 =
1472
- * Work without access key
1473
- * Bitrix24 contact integration
1474
- * Issues fixes
1475
-
1476
- = 5.57.1 February 8 2017 =
1477
- * Fix for notice logic.
1478
-
1479
- = 5.57 February 8 2017 =
1480
- * Setting page changes.
1481
- * Bug fixes for WooCommerce.
1482
- * Spam FireWall filters only GET requests.
1483
- * Optimization.
1484
- * Minor and major fixes.
1485
-
1486
- = 5.56.1 January 25 2017 =
1487
- * Minor fixes
1488
-
1489
- = 5.56 January 19 2017 =
1490
- * Integrations: MailChimp Premium, Profile Press.
1491
- * Changes comments flow.
1492
- * FireWall updater fix.
1493
- * Users check optimization.
1494
-
1495
- = 5.55 December 23 2016 =
1496
- * Integrations: Caldera Forms, Visual Form Builder.
1497
- * Fix for different 'cookies' header names.
1498
- * Fixed user deletion.
1499
-
1500
- = 5.54 December 12 2016 =
1501
- * Integrations: AmoForms, Contact Form Clean and Simple.
1502
- * Comments check logic refreshed.
1503
- * Registration JS error fix.
1504
- * Users check fix.
1505
- * Fix for translation system.
1506
- * Minor fixes.
1507
-
1508
- = 5.53.1 December 9 2016 =
1509
- * Minor layout fixes.
1510
-
1511
- = 5.53 November 28 2016 =
1512
- * Addition warning before deleting users.
1513
- * Spam FireWall is enabled by default.
1514
- * Usernoise modal feedback / contact form : integration.
1515
- * Translations.
1516
- * Optimization.
1517
- * Fixes.
1518
-
1519
- = 5.52.1 November 14 2016 =
1520
- * Users and comments check: Using new API method.
1521
- * Quick Contact From: Integration via "Custom Contact Forms" setting.
1522
- * JavaScript filtration improved.
1523
- * Translation changes.
1524
- * Optimized JavaScript code.
1525
-
1526
- = 5.51 November 2 2016 =
1527
- * Added protection for internal forms
1528
- * Immediate spam check for comments and users from WP dashboard
1529
- * Optimized code
1530
-
1531
- = 5.50.1 October 24 2016 =
1532
- * Improved filtration in contact forms.
1533
- * Spam FireWall: Fixed issue with SFW logs
1534
- * Skipping service fields: Fast Secure Contact Froms, QU Forms, Custom Contact Forms
1535
-
1536
- = 5.50 October 20 2016 =
1537
- * Custom contact forms: integration.
1538
- * Pirate Forms: integration.
1539
- * PHP 7 compatibility: Deleted third-party JSON library and dependences.
1540
- * PHP 7 compatibility: Fixed end of lines.
1541
- * YOAST Seo: Fixed PHP warnings.
1542
- * Spam FireWall: Minor fix for Spam FireWall counter.
1543
- * Only admin could access to CleanTalk dashboard (exclude Authors an Editors).
1544
- * Improved filtration in contact forms.
1545
-
1546
- = 5.49.2 October 5 2016 =
1547
- * Second Fix for database error. Stable version.
1548
-
1549
- = 5.49.1 October 5 2016 =
1550
- * Fixed database error.
1551
-
1552
- = 5.49 October 3 2016 =
1553
- * Spam FireWall feature: Class upgraded.
1554
- * New feature: Delete links from approved comments.
1555
- * Settings: Grouped.
1556
- * Settings: Altered description fixed spelling mistakes.
1557
- * Settings: Added indicator for Spam FireWall.
1558
- * Admin bar: Added Spam FireWall counter
1559
- * Clean and Simple Contact Form: Direct integration.
1560
- * WooCommerce: Don't check password recovery form.
1561
- * WooCommerce Wishlists: Issue with check for Google bots.
1562
- * JetPack: contact form fix.
1563
- * Fixed and created the defaults for all CleanTalk options.
1564
- * Fixed spelling mistakes.
1565
-
1566
- = 5.48 September 15 2016 =
1567
- * buddyPress: Added private messages filtering. Doesn't check user if he has 3 or more messages in the "sentbox" and "inbox" folders.
1568
- * buddyPress: Added option in settings for private messages check.
1569
- * WooCommerce Wishlist: Added check for wishlists.
1570
- * Fixed issue with "check all post data" option.
1571
- * Improved filtering for Gravity Forms
1572
- * Mobile Assistant Connector fix
1573
- * Minor fixes.
1574
-
1575
- = 5.47 September 5 2016 =
1576
- * WooCommerce: direct integration for checkout form.
1577
- * WooCommerce Sensei: login form fix.
1578
- * bbPress: Added the check for topics and comments with stop_words
1579
- * bbPress: Skip check for admin in comments and topics
1580
- * UserPro: fixes. Request without field "shortcode"
1581
- * Contact Form 7: Bug fix.
1582
- * Spam FireWall: Optimized logs rotation.
1583
- * Updated inner functions (compatibility fix for PHP 5.4+)
1584
- * Fixed output of counters (without spamfirewall stats)
1585
- * Fixed spelling in settings
1586
- * Added "Delete from the list" button in comments spam check page
1587
- * Minor fixes.
1588
-
1589
- = 5.46 August 17 2016 =
1590
- * Fixed issue with admin bar links in WP Multi Network mode.
1591
- * Added "All time counter" and "Daily counter" into admin bar.
1592
- * Added settings to disable counters in admin bar.
1593
- * New style for "Get access key manually" button.
1594
-
1595
- = 5.45.2 August 4 2016 =
1596
- * Added Anti-Spam protection for Quick Event Manager.
1597
- * Improved bulk spam test for users. Now the plugin does not mark as Spam user, if the user IP address has spam activity more than 30 days ago.
1598
- * Fixed bulk spam test for comments. Previous version had a conflict between spam history for IP and Email.
1599
- * Minor fix function to get the API key.
1600
-
1601
- = 5.45.1 July 26 2016 =
1602
- * Fixed issue with missed spam messages, subscriptions.
1603
- * Improved bulk spam test for comments. Now the plugin will not mark as Spam comments, if a comment sender (IP address) has spam activity more than 30 days ago.
1604
-
1605
- = 5.45 July 21 2016 =
1606
- * Optimized bulk spam comments deletion.
1607
- * Turned off JavaScript anti-spam cookies if the option 'Set cookies' is turned off. It helps to avoid issues with Varnish.
1608
- * Added links to bulk spam comments&users removal tool.
1609
-
1610
- = 5.44.1 July 13 2016 =
1611
- * Optimized options getting code.
1612
- * Added the option 'Protect Logged in users' to do anti-spam tests for submissions by logged in users.
1613
-
1614
- = 5.43.2 June 30 2016 =
1615
- * Optimized anti-spam code for AJAX based contact forms.
1616
- * Fixed CSS layout of counters in Admin bar (issue with layout in IE11).
1617
-
1618
- = 5.43.1 June 23 2016 =
1619
- * Added agent version in requests to test a connection between the website and servers.
1620
- * Fixed issue with PHP notices in cleantalk-admin.php.
1621
-
1622
- = 5.43 June 22 2016 =
1623
- * Added spam protection for registrations via 'Login with AJAX' plug-in.
1624
- * Added a new counter to Admin bar that allows to count spam and approved submissions since last reset.
1625
- * Update the code that tests a connection between a website and CleanTalk's servers. New version doesn't generate submissions with email good@cleantalk.org.
1626
- * Fixed issue with spam protection for nested forms by Formidable plug-in.
1627
-
1628
- = 5.42 2016-06-15 =
1629
- * Added anti-spam protection for UserPro.
1630
- * Improved protection for Formidable forms + Varnish.
1631
- * Improved bulk search for spam accounts.
1632
- * Fixed spam protection for pages that contain multiple Formidable forms with same HTML ID.
1633
- * Optimized PHP code to be compatible with PHP 5.4 and above. The patch has been applied to Formidable forms spam protection.
1634
- * Minor fixes in plugin backend.
1635
-
1636
- = 5.41 2016-05-31 =
1637
- * Added HTTP response in plugin response if an network issue was happend.
1638
- * Optimized JavaScript anti-spam test for Formidable forms.
1639
- * Re-stored the option to auto redirect to plugn settings after plugin activation.
1640
- * Updated Spanish, Russian translations.
1641
- * Fixed issue with nasted fields in Formidable forms.
1642
-
1643
- = 5.40.3 2016-05-26 =
1644
- * Added option to encrypt (SSL) connection to CleanTalk anti-spam servers.
1645
- * Added JSON encoding for AJAX forms.
1646
- * Obfuscated private data for Custom contact forms option.
1647
- * Optimized bulk users check for spam over blacklists database.
1648
- * Fixed issue with lost connection to servers and JavaScript anti-spam test.
1649
- * Fixed issue with WordFence and collect_details.
1650
-
1651
- = 5.40.2 2016-05-11 =
1652
- * Improved account status check logic.
1653
- * Fixed issue with double anti-spam tests for FastSecure contact forms.
1654
- * Fixed issue with nulled JavaScript variables assigned from backend. This issue might me occurred on standart WordPress registration form and with failed JavaScript spam test.
1655
- * Fixed issue with session_start() with PHP sessions stored in memcache.
1656
-
1657
- = 5.40.1 2016-04-28 =
1658
- * Fixed issue with Super Socializer.
1659
- * Fixed issue with spam filtration for logged in users and Formidable forms.
1660
- * Added logging of all submitted fields for FastSecure contact form.
1661
-
1662
- = 5.40 2016-04-19 =
1663
- * Added JSON encoding for posts that were protected via Custom contact forms option. It allows show anti-spam logs in the Dashboard in more comfortable view.
1664
- * Minor fix in plugin settings.
1665
- * Fixed pagination for bulk users spam test.
1666
- * Fixed issue with unknown _SESSION.
1667
- * Fixed issue with double Spam FireWall database upload.
1668
-
1669
- = 5.39.1 2016-04-04 =
1670
- * Improved AJAX based anti-spam test with HTTPS backends.
1671
- * Added fix to avoid issue with empty ct_info_flag on JavaScript side.
1672
- * Added logic to exclude caching for Spam FireWall.
1673
- * Removed a condition to skip accounts with 127.0.0.1 IP in spam test for registered acconts.
1674
-
1675
- = 5.38.1 2016-03-24 =
1676
- * Fixed issue with PHP sessions and 'The session id is too long or contains illegal characters'.
1677
- * Removed Spam FireWall protection on /feed page.
1678
- * Disabled anti-spam tests for AJAX calls if the option 'Custom contact forms' is turned off.
1679
- * Added reject notice for spam submissions on Gravity forms with AJAX calls.
1680
-
1681
- = 5.37.3 2016-03-10 =
1682
- * Fixed bug with broken MailPoet previews.
1683
- * Fixed bug with broken Geo My WP pop-up windows.
1684
- * Fixed issue with mb_convert_encoding() function.
1685
- * Removed double JavaScript code in front-end.
1686
- * Removed unused variables in anti spam logic.
1687
- * Added option 'Set cookies' (turned on by default). If the option turned off, the plugin will not generate cookies, but in this case plugin will not protect some rarely used contact forms. Any way, turn this option off be compatible with Varnish in spam protection for WordPress core comments, registrations and most popular contact forms.
1688
- * Added anti-spam protection for Gravity forms via option 'Contact forms' with hook gform_entry_is_spam().
1689
-
1690
- = 5.36.1 2016-02-05 =
1691
- * Fixed bug, when users receive error after logging in
1692
- * Improve anti-spam filters for contact forms.
1693
-
1694
- = 5.36 2016-02-04 =
1695
- * Improved JavaScript anti spam protection
1696
- * Improvements for avoiding blocking requests from payment systems
1697
-
1698
- = 5.35 2016-01-14 =
1699
- * Added support for IP licensing
1700
- * Some anti-spam protection improvements
1701
- * Small backend interface fixes
1702
-
1703
- = 5.34.1 2015-12-17 =
1704
- * Fixed trackback antispam protection: improved checking mechanism
1705
- * Fixed problem with blocking MailPoet: added exclusions in spam checking algorithm
1706
-
1707
- = 5.34 2015-12-10 =
1708
- * Improved spam checking mechanism
1709
- * Added "Collect browser details" option for better antispam protection
1710
- * Fixed custom contact forms checking for AJAX requests
1711
- * Minor translations fixes
1712
-
1713
- = 5.33.1 2015-12-04 =
1714
- * Fixed issue with BBPress: restored old user permission checking mechanism
1715
- * Fixed anti-spam comments checking: sometimes get_comments returned wrong comments number
1716
- * Fixed bulk checking: made numeric indexes in users and comments arrays
1717
- * Fixed trackback and pingback checking: removed exception for checking
1718
-
1719
- = 5.33 2015-12-01 =
1720
- * Backend interface fixes
1721
- * Improved Spam FireWall efficiency
1722
- * Improved performance of anti spam checking
1723
-
1724
- = 5.32 2015-11-26 =
1725
- * Added improvements for manual spam detection
1726
- * Fixed errors in backend
1727
- * Fixed bulk users anti spam checking
1728
- * Added indicator for bulk spam checking
1729
- * Added "Get access key automatically" button
1730
-
1731
- = 5.31 2015-11-11 =
1732
- * Improved backend performance
1733
- * Fixed counter of approved/blocked spam attacks
1734
- * Fixed Spam FireWall logging
1735
-
1736
- = 5.30 2015-11-05 =
1737
- * Improved anti-spam checking
1738
- * Optimized performance
1739
- * Fixed blocking email preview in MailPoet
1740
- * Interface fixes
1741
- * WPMU interface fixes
1742
-
1743
- = 5.29 2015-10-27 =
1744
- * Optimized performance
1745
- * Fixed bugs in custom contact forms spam checking
1746
-
1747
- = 5.28.7 2015-10-23 =
1748
- * Optimized PHP sessions creation algorithm. This fix should increase plugin perfomance on hostings without retenion of PHP sessions files.
1749
- * Removed autoredirection to plugin settings after plugin activation.
1750
-
1751
- = 5.28 2015-10-16 =
1752
- * Fixed errors in anti-spam checking
1753
- * Restored options for spam checking registrations and cpmmon contact forms
1754
- * Improved spam protection
1755
- * Fixed problems with AJAX functionality in MailPoet, WooCommerce and other AJAX plugins
1756
-
1757
- = 5.27 2015-10-13 =
1758
- * Improvements in SpamFireWall feature
1759
- * Code optimization
1760
- * Backend interface fixes
1761
-
1762
- = 5.26 2015-10-05 =
1763
- * Added WordPress Language Pack support
1764
- * Removed spam checking for some autorisation plugins
1765
- * New experimental feature: SpamFireWall
1766
-
1767
- = 5.25.2 2015-09-28 =
1768
- * Fixed backend bug
1769
-
1770
- = 5.25.1 2015-09-28 =
1771
- * Added widget with anti-spam stats
1772
- * Added information about blocked spam attacks in admin dashboard and CleanTalk settings
1773
- * Added ability not to check comments for users with 3 or above allowed comments
1774
- * Added an option 'Help others known CleanTalk' to show information for site visitors, that your site is protected from spam by us
1775
- * Some backend interface settings
1776
-
1777
- = 5.24.1 2015-09-16 =
1778
- * Fixed some errors in frontend
1779
- * Fixed access key saving
1780
-
1781
- = 5.24 2015-09-14 =
1782
- * Backend interface fixes
1783
- * Improvement for AJAX JavaScript spam checking
1784
-
1785
- = 5.23 2015-09-01 =
1786
- * Fixed BuddyPress profile search false positivities of anti-spam protection.
1787
- * Some interface fixes of bulk users & comments spam checking
1788
-
1789
- = 5.22 2015-08-26 =
1790
- * Fixed possible XSS issue for anti-spam test on third-party forms.
1791
-
1792
- = 5.21 2015-08-21 =
1793
- * Fixed bug with skipping spam submissions
1794
- * Fixed bug with receiving old user_token for viewing anti-spam stats
1795
- * Small backend fixes
1796
-
1797
- = 5.20 2015-08-15 =
1798
- * Fixed anti-spam stats in admin bar - now stats updates every hour
1799
- * Fixed issue with skipping spam submissions
1800
- * Added some PHP-constants for advanced users - CLEANTALK_AJAX_USE_BUFFER and CLEANTALK_AJAX_USE_FOOTER_HEADER can be defined to true or false in wp-config.php to control method, which will be used for injection of AJAX script.
1801
-
1802
- = 5.19 2015-08-11 =
1803
- * New feature: anti-spam checking for registered users
1804
- * Fixed issue with AJAX JavaScript anti-spam test.
1805
- * Fixed issue with SEO Yoast xml sitemaps and JavaScript anti-spam test.
1806
-
1807
- = 5.18 2015-08-04 =
1808
- * Fixed issue with user_token
1809
- * Added anti-spam API, see our FAQ
1810
-
1811
- = 5.17 2015-07-23 =
1812
- * Fixed infinite redirection after activation
1813
- * Minor backend fixes
1814
-
1815
- = 5.16 2015-07-22 =
1816
- * Fixed external services checking
1817
- * Fixed mass comments deletion
1818
- * Fixed AJAX anti-spam protection
1819
-
1820
- = 5.15 2015-07-16 =
1821
- * New feature: anti-spam protection for forms, that uses external services
1822
-
1823
- = 5.14 2015-07-03 =
1824
- * Added anti-spam protection for some themes and plugins
1825
- * Some backend fixes
1826
-
1827
- = 5.13 2015-06-12 =
1828
- * Closing notification for anti-spam renew
1829
- * Fixed bulk anti spam comment checking
1830
-
1831
- = 5.12 2015-06-01 =
1832
- * Added option for checking all post data for spam
1833
- * Some JavaScript protection improvements
1834
- * Added option for old JavaScript check (without AJAX)
1835
-
1836
- = 5.10 2015-05-25 =
1837
- * Fixed Javascript error on some forms
1838
-
1839
- = 5.9 2015-05-21 =
1840
- * Fixed Javascript error on CF7 and JetPack
1841
- * Some backend and frontent fixes
1842
-
1843
- = 5.8 2015-05-18 =
1844
- * Minor fixes
1845
-
1846
- = 5.7 2015-05-18 =
1847
- * Fixed French translation
1848
- * Fixed protection algorithm
1849
-
1850
- = 5.6 2015-05-11 =
1851
- * Fixed translation
1852
- * Fixed bulk comments anti-spam checking
1853
- * Added option for disabling anti spam stats in adminbar
1854
- * Some security fixes
1855
-
1856
- = 5.5 2015-04-29 =
1857
- * Fixed security issue
1858
- * Some interface fixes
1859
-
1860
- = 5.4 2015-04-27 =
1861
- * Some interface and functionality changes in plugin settings page
1862
- * Added counter for anti-spam stats in admin bar
1863
-
1864
- = 5.3 2015-04-13 =
1865
- * Added anti-spam protection for Divi theme contact forms
1866
- * Added anti-spam protection for MyMail contact forms
1867
- * Added anti-spam protection for MailPoet Newsletters
1868
- * Some interface and functionality changes in backend
1869
-
1870
- = 5.2 2015-04-01 =
1871
- * Added link for anti-spam stats
1872
- * Added WP User Frontend Pro registration form protection
1873
-
1874
- = 5.1 2015-03-24 =
1875
- * Fixed site crash after installing 5.0 on some websites
1876
-
1877
- = 5.0 2015-03-24 =
1878
- * Added bulk comments checking for spam via CleanTalk blacklists
1879
- * Added anti-spam form protection for 'Ajax Login & Register'
1880
- * Fixed JetPack form protection
1881
-
1882
- = 4.24 2015-03-20 =
1883
- * Added immediate spam protection activation.
1884
-
1885
- = 4.22 2015-03-17 =
1886
- * Added button for automatic spam protection key getting.
1887
-
1888
- = 4.21 2015-03-11 =
1889
- * Added license renew notification.
1890
-
1891
- = 4.20 2015-03-03 =
1892
- * Added German, Italian, Polish, Portuguese translations.
1893
- * Minor code fixes.
1894
-
1895
- = 4.19 2015-02-24 =
1896
- * Increased keys lifetime for JS spam test.
1897
-
1898
- = 4.18 2015-02-17 =
1899
- * Fixed bug with comments approvement - moved ct_unmark_red() to cleantalk-admin.php
1900
- * Added PayPal 'payment_status' in skip list.
1901
- * Added Akismet 'spam' status processing.
1902
-
1903
- = 4.17 2015-02-12 =
1904
- * New base class.
1905
- * Divided code to 3 separate files - common, public and admin.
1906
-
1907
- = 4.16 2015-02-05 =
1908
- * New base class.
1909
- * Fixed JetPack spam filters logics.
1910
- * Optimized Formidable, bbPress, BuddyPress spam filters.
1911
-
1912
- = 4.15 2015-01-29 =
1913
- * Support spam test for Contact Form 7 versions before 3.0.0.
1914
- * Fixed global JS-vars for JS spam test.
1915
- * Fixed online notice cookie logics.
1916
- * Optimized spam filters for FSCF, WooCommerce, JetPack.
1917
- * Optimized option getting.
1918
-
1919
- = 4.14 2015-01-19 =
1920
- * Removed deprecated option from comment approvement code.
1921
- * New API key URL.
1922
- * Trimmed API key in admin panel.
1923
- * Added current options to array sended to CleanTalk servers.
1924
- = 4.13 2014-12-29 =
1925
- * Fixed bug with autimatically aprovement not spam comments. Now this option disabled and do not override local WordPress policy.
1926
-
1927
- = 4.12 2014-12-29 =
1928
- * Fixed bug with 'Wrong Access key...' notice in WordPress dashboard.
1929
- * Fixed filtration bug in WordPress dashboard login form.
1930
-
1931
- = 4.11 2014-12-22 =
1932
- * Improved anti-spam protection for custom contact/registration/subscribe forms.
1933
- * Improved anti-spam protection for comments.
1934
- * Accelerated plugin speed for comments, regirstrations and contacts.
1935
- * Added translation to French.
1936
-
1937
- = 4.10 2014-12-10 =
1938
- * Improved anti-spam protection for custom contact/registration/subscribe forms.
1939
- * Option 'Custom contact forms' enabled by default for new setups.
1940
- * Removed settings "Publish relevant comments", "Use encrypted (SSL) connection".
1941
- * Added translation to Danish (thank you for Mikkel at KreativJul.dk).
1942
-
1943
- = 4.9 2014-11-24 =
1944
- * Fixed spam test for Contact Form 7.
1945
-
1946
- = 4.8 2014-11-19 =
1947
- * Improved anti-spam protection for BuddyPress registrations and custom contact forms.
1948
-
1949
- = 4.7 2014-11-16 =
1950
- * Fixed JavaScript spam test for FastSecure contact form.
1951
-
1952
- = 4.6 2014-11-11 =
1953
- * Improved anti-spam protection on BuddyPress registrations.
1954
- * Improved anti-spam protection on contact forms.
1955
- * Removed plugin sign from pending, spam comments. To get details about a comment please use Dashboard at cleantalk.org.
1956
- * Improved Access key validation function.
1957
- * Added protection for bbPress comments via stop list. Stop list function is a list to reject comments by prefiled words. To fill the list please use Dashboard at cleantalk.org.
1958
-
1959
- = 4.5 2014-11-04 =
1960
- * Fixed CF7 JavaScript bug.
1961
- * Fixed rejects in bbPress guests comments.
1962
-
1963
- = 4.4 2014-10-29 =
1964
- * Improved anti-spam JS test for CF7.
1965
- * Fixed 'noscript' text in FaceBook Like preview in Valenti theme.
1966
-
1967
- = 4.2 2014-10-20 =
1968
- * Fixed double checks issue for BuddyPress registrations.
1969
- * Increased timeout limits to find the work server.
1970
-
1971
- = 4.1 2014-10-13 =
1972
- * Optimized code for manual moderation feedback sending.
1973
- * Optimized anti-spam algorithms for comments, contacts and signups.
1974
-
1975
- = 4.0 2014-10-06 =
1976
- * Improved anti-spam protection for custom contact forms.
1977
- * Improved anti-spam protection for registration forms.
1978
-
1979
- = 3.9 2014-10-01 =
1980
- * Did exception to do not break to create new user in WordPress backend.
1981
-
1982
- = 3.8 2014-09-19 =
1983
- * Fixed json_encode() + malformed characters.
1984
- * Fixed JavaScript issue with wpautop().
1985
-
1986
- = 3.6 2014-09-15 =
1987
- * Fixed preg_match() issue for Formidable forms and Custom contact forms.
1988
- * Improved anti-spam protection for Custom contact forms.
1989
-
1990
- = 3.4 2014-09-04 =
1991
- * We've added anti-spam for themes contact forms and any untested contact forms plugins. To use this test enable option "Custom contact forms" in plugin settings.
1992
- * We've added auto rotation for spam comments. Now the plugin removes comments in SPAM folder older then 15 days. This option is enabled by default.
1993
-
1994
- = 3.2 2014-08-27 =
1995
- * Fixed submit_time() logic for failed submits (comments/registrations). Now form fill time resets after every failed submit.
1996
-
1997
- = 3.1 2014-08-19 =
1998
- * Added anti-spam test over senders Cookies.
1999
- * Improved form fill anti-spam test.
2000
- * Improved speed selection of the nearest server to website.
2001
- * Improved anti-spam speed for comments.
2002
- * Relevance anti-spam test disabled by default. To enable test should be used option 'relevance_test'.
2003
-
2004
- = 2.58 2014-08-06 =
2005
- * Added anti-spam protection for signups posted via WooCommerce order form.
2006
- * Improved anti-spam protection for Contact Form 7.
2007
- * Improved anti-spam protection for registrations. Now the plugin looking for JavaScript anti spam test results not only in POST array, but in COOKIES array too. This improvement allows protect signup forms for any untested signups plugins and themes.
2008
- * Updated PHP API. Now the plugin can resolve sender IP for websites behind proxy servers. If the proxy servers uses private IP address.
2009
-
2010
- = 2.57 2014-07-29 =
2011
- * Improved anti-spam protection for comments. The plugin now proccessing website url in the comments form.
2012
- * Fixed sign remove logic for approved comments. Previous version doesn't cut sign for comments approved via AJAX call in WordPress backend.
2013
- * Fixed switching to SSL for comments. Previous version doesn't use secured connection for comments.
2014
-
2015
- = 2.56 2014-07-21 =
2016
- * Fixed account status check logic. Previous version makes unnecessary test API calls when the plugin asks account status check.
2017
-
2018
- = 2.55 2014-07-11 =
2019
- * Fixed bug with account status function. In backend the plugin showed notice 'Please don't forget to disable CAPTCHA if you have it!' on every page.
2020
-
2021
- = 2.54 2014-07-11 =
2022
- * Fixed signup anti-spam protection logic for BuddyPress registrations.
2023
- * Fixed anti-spam protection for JetPack contact form.
2024
- * Changed account status check logic.
2025
-
2026
- = 2.53 2014-06-27 =
2027
- * Fixed anit-spam protection bug for signups.
2028
- * Changed anti-spam functions (comments and signups) priority.
2029
-
2030
- = 2.52 2014-06-25 =
2031
- * Fixed 'Fatal error: Call to a member function get_error_code()' issue with signups via BuddyPress.
2032
-
2033
- = 2.51 2014-06-23 =
2034
- * Added spam protection for registrations via plugin New User Approve by Josh Harrison. If the CleanTalk matched signup as spam this signup will be denied to placing in pending queue.
2035
- * Added option "Use secure (SSL) connection to CleanTalk cloud". If the option enabled plugin will communicate with CleanTalk severs via 128bit encrypted data channel. So, if you have SSL protected webforms on website you can use this option to be sure that visitors personal data safely transmits to CleanTalk servers.
2036
- * Fixed minor bug with loading backend functions.
2037
-
2038
- = 2.49 2014-06-10 =
2039
- * Added spam protection for S2Member Auth.net forms.
2040
- * Added spam protection for multisite signup form.
2041
- * Optimized account status check function.
2042
-
2043
- = 2.46 2014-05-19 =
2044
- * Added: HTML notice about the need to enable JavaScript.
2045
- * Fixed: Fixed pingbacks anti-spam test.
2046
-
2047
- = 2.44 2014-05-12 =
2048
- * Added: Anti-spam protection for S2Member framework.
2049
- * Improved: JavaScript anti-spam test.
2050
- * Improved: Plugin load time for backend and frontend.
2051
- * Fixed: PHP warning mb_convert_encoding()
2052
-
2053
- = 2.42 2014-04-29 =
2054
- * Fixed: JavaScript anti-spam test for comments.
2055
-
2056
- = 2.40 2014-04-25 =
2057
- * New: Fast Secure Contact form support.
2058
- * New: WordPress Landing Pages support
2059
-
2060
- = 2.38 2014-03-27 =
2061
- * Fixed: Registraion form submit time spam test.
2062
-
2063
- = 2.36 2014-03-12 =
2064
- * Reversed to patches from old revisions.
2065
-
2066
- = 2.35 2014-03-12 =
2067
- * New: Notifications about disabled account
2068
- * New: Improved JavaScript spam test.
2069
- * Fixed: Code optimization
2070
- * Fixed: JavaScript test for signups.
2071
-
2072
- = 2.33 2014-02-12 =
2073
- * Fixed: CURLOPT_FOLLOWLOCATION bug at admin notice
2074
-
2075
- = 2.32 2014-02-04 =
2076
- * New: Added notice about automatically approved comment. The notice shows only for first approved comment and only for new commentators (without approved comments) of the blog.
2077
- * New: At WordPress console added banner for notices.
2078
- * Changed: Screenshots updated.
2079
-
2080
- = 2.31 2014-01-24 =
2081
- * New: Added spam protection for JetPack comments
2082
- * Fixed: cURL connection issue "Expect: 100-continue"
2083
-
2084
- = 2.30 2014-01-13 =
2085
- * Changed: Improved servers connection logic.
2086
- * Fixed: Antispam test for Fomidable forms.
2087
-
2088
- = 2.28 2013-12-19 =
2089
- * New: Added protection against spam bots for WooCommerce review form.
2090
- * Fixed: JavaScript anti-spam logic for WooCommerce review form.
2091
-
2092
- = 2.27 2013-12-06 =
2093
- * New: Added protection against spam bots for JetPack Contact form.
2094
- * Fixed: JavaScript anti-spam logic for registrations and Contact form 7.
2095
-
2096
- = 2.25 2013-11-27 =
2097
- * New: Added protection against spam bots for BuddyPress registrations.
2098
- * New: Added protection against spam bots for Contact form 7.
2099
- * New: Added Spanish (es_ES) translation.
2100
-
2101
- = 2.23 2013-11-20 =
2102
- * New: Added automatic training blacklists on spam bot account deletion.
2103
- * New: Added URL to project homepage at plugin options.
2104
- * Changed: Improved anti-spam logic.
2105
-
2106
- = 2.21 2013-11-13 =
2107
- * Changed: WordPress blacklists settings get priority over plugin's anti-spam settings
2108
- * Changed: Disabled management approval comments for regular commentators of the blog. Automatically approved for publication only the comments of the new blog authors.
2109
- * Changed: Removed form submit time test. Imporved JavaScript spam test.
2110
- * Changed: PHP code optimizations
2111
-
2112
- = 2.19 2013-11-08 =
2113
- * New: Antispam protection from spam bots at the registration form
2114
- * Changed: Russian localization for admin panel
2115
- * Changed: PHP code optimizations
2116
-
2117
- = 2.5.18 2013-11-01 =
2118
- * Fixed: Bug with selection of the last comments for post
2119
- * New: Antispam protection for Formidable feedback forms
2120
- * New: Automatic deletion of outdated spam comments
2121
- * New: On/Off option for comments spam filtration
2122
- * Tested with WordPress 3.7.1
2123
-
2124
- = 2.4.15 2013-09-26 =
2125
- * Fixed: Bug with mass comments deletion
2126
- * Changed: Russian localization for admin panel
2127
- * Tested with mulitsite setup (WordPress network or WPMU)
2128
-
2129
- = 2.4.14 2013-08-29 =
2130
- * Changed: Removed feedback requests to the servers for banned (spam) comments.
2131
-
2132
- = 2.4.13 2013-08-19 =
2133
- * Changed: Switched HTTP requests from file_get_contents() to CURL. Added file_get_contens() as backup connection to the servers.
2134
- * Changed: Removed feedback requests for comments moved to trash.
2135
- * Fixed: "Fail connect to servers..." error on hostings with disabled 'allow_url_fopen' PHP option.
2136
-
2137
- = 2.4.12 2013-08-12 =
2138
- * Removed RPC::XML library from plugin.
2139
- * Switched plugin to HTTP+JSON connection with servers.
2140
- * Fixed bug with comments anti-spam tests with non UTF8 codepage.
2141
-
2142
- = 2.4.11 2013-08-02 =
2143
- * Removed spam tests for self-made pingbacks
2144
- * Tested up to WP 3.6
2145
-
2146
- = 2.4.10 2013-07-24 =
2147
- * Fixed warning in PHP 5.4
2148
- * Fixed bug with disabling comments test for Administrators, Authors and Editors
2149
- * "Stop words" settings moved to <a href="http://cleantalk.org/my">Control panel</a> of the service
2150
- * "Response language" settings moved <a href="http://cleantalk.org/my">Control panel</a> of the service
2151
-
2152
- = 2.4.9 =
2153
- * Fixed extra debugging in base class
2154
-
2155
- = 2.4.8 =
2156
- * Enabled convertion to UTF8 for comment and example text
2157
- * Optimized PHP code
2158
-
2159
- = 2.3.8 =
2160
- * Enabled selection the fastest server in the pool
2161
- * Fixed work server in plugin's config
2162
-
2163
- = 2.2.3 =
2164
- * Secured md5 string for JavaScript test
2165
- * Added requests's timestamp to calculate request work time
2166
- * Update base CleanTalk's PHP class
2167
-
2168
- = 2.1.2 =
2169
- * Improved perfomance for processing large comments (over 32kb size)
2170
- * Improved perfomance for bulk operations with comments in Comments panel
2171
- * Added feedback request with URL to approved comment
2172
-
2173
- = 2.0.2 =
2174
- * Fixed bug with JavaScript test and WordPress cache plugins
2175
-
2176
- = 2.0.1 =
2177
- * Added option "Publicate relevant comments" to plugin's options.
2178
- * Added descriptions to plugin options
2179
-
2180
- = 1.5.4 =
2181
- * Fixed HTTP_REFERER transmission to the servers
2182
- * Improved JavaScript spam test
2183
- * Optimized PHP code
2184
-
2185
- = 1.4.4 =
2186
- * Pingback, trackback comments has moved to manual moderataion
2187
- * Added transmission to the serves comment type and URL
2188
- * Post title, body and comments separated into individual data elements
2189
- * Added priority for matched words in the comment with post title
2190
- * Enabled stop words filtration as default option
2191
-
2192
- = 1.3.4 =
2193
- * Removed PHP debugging.
2194
-
2195
- = 1.3.3 =
2196
- * Added notice at admin panel about empty Access key in plugin settings
2197
- * Removed HTTP link to the site project from post page
2198
- * Removed unused options from settings page
2199
- * Tested up to WordPress 3.5
2200
-
2201
- = 1.2.3 =
2202
- * Fixed bug with session_start.
2203
-
2204
- = 1.2.2 =
2205
- * Plugin rename to CleanTalk. Spam prevent plugin
2206
- * Integration Base Class version 0.7
2207
- * Added fast submit check
2208
- * Added check website in form
2209
- * Added feedbacks for change comment status (Not spam, unapprove)
2210
- * Added function move comment in spam folder if CleanTalk say is spam
2211
- * Disable checking for user groups Administrator, Author, Editor
2212
- * Marked red color bad words
2213
-
2214
- = 1.1.2 =
2215
- * Addition: Title of the post attached to the example text in auto publication tool.
2216
- * Tested with WordPress 3.4.1.
2217
-
2218
- = 1.1.1 =
2219
- * HTTP_REFERER bug fixed
2220
-
2221
- = 1.1.1 =
2222
- * Added user locale support, tested up to WP 3.4
2223
-
2224
- = 1.1.0 =
2225
- * First version
2226
-
2227
- == Upgrade Notice ==
2228
- = 5.130 November 14 2019 =
2229
- * Fix: JetPack contact form JS check.
2230
- * FIx: Iphorm AJAX form.
2231
- * Fix: Paid Memberships Pro fix.
2232
- * Fix: Divi theme contact form fix.
2233
- * Integration: Paid Memberships Pro.
2234
- * Integration: Elementor Pro page builder forms.
2235
- * Improved: Compatibility with different server.
2236
-
2237
- = 5.129.1 November 5 2019 =
2238
- * Fix: WooCommerce order detecting.
2239
-
2240
- = 5.129 October 30 2019 =
2241
- * Upd: Localize updated.
2242
- * Fix: Direct $_SERVER access replaced.
2243
- * Integration: The 7 theme contact form.
2244
- * Fix: Minor improvements and bug fixes.
2245
- * Mod: Putting site in maintenance mode during plugin update.
2246
-
2247
- = 5.128.1 October 23 2019 =
2248
- * Fix: Fatal error when using buffer output.
2249
- * Fix: Translate domain for errors.
2250
- * Code: Fix spelling in function name.
2251
- * Fix: JS disabled error.
2252
- * Upd: Comment edit screen updated.
2253
- * Fix: Cleantalk\Arr::search() fixed.
2254
-
2255
- = 5.128 October 17 2019 =
2256
- * Mod: Users check - functionality updated.
2257
- * Fix: Users check - dates format updated.
2258
- * Mod: Comments check - functionality updated.
2259
- * Fix: Comments check - dates format updated.
2260
- * Fix: Fields exclusion fixed.
2261
- * Fix: Notice fixed.
2262
- * Fix: Cleantalk/Antispam/API.
2263
- * Fix: Minor improvements and bug fixes.
2264
-
2265
- = 5.127.4 October 13 2019 =
2266
- * Mod: Automatically decrease amount of checked users by one request if an error occurs.
2267
- * Fix: Security issue.
2268
- * Fix: Static JS key.
2269
-
2270
- = 5.127.3 October 8 2019 =
2271
- * Fix: Errors during registration.
2272
-
2273
- = 5.127.2 October 8 2019 =
2274
- * Integration: SeedProd Coming Soon Page Pro.
2275
- * Fix: WooCommerce double reuqests.
2276
- * Fix: Static JS key.
2277
-
2278
- = 5.127.1 October 7 2019 =
2279
- * Fix: WPMS settings logic.
2280
- * Using default database storage engine for tables.
2281
-
2282
- = 5.127 September 30 2019 =
2283
- * Fix: Delete redirect notice on external forms
2284
- * Fix: Storing spam for 15 days.
2285
- * Fix: correct DiVi display message.
2286
- * Integration: Ultimate Members.
2287
- * Mod: Setting "Use static JS key" switched to "Auto" if it was "No". Default is "Auto".
2288
- * Mod: Moving White Label option to main site settings.
2289
- * New: Use static JS key if cache plugin detected.
2290
- * New: Settings for URLs, fields, roles exclusions.
2291
- * New: Regular Expressions support in URLs, fields exclusions.
2292
- * New: Send validation errors on standard registration form.
2293
- * Updater: Move exclusions from global variable to settings.
2294
- * Deprecated: IP exclusions.
2295
-
2296
- = 5.126 September 9 2019 =
2297
- * Spam protection improved!
2298
- * Integration: Option wheel.
2299
- * Mod: Improved Email detection.
2300
- * Mod: Improved IP detection.
2301
- * Fix: Too large database table with alternative sessions.
2302
- * Fix: Exception for WooCommerce AJAX.
2303
- * Fix: API key validation.
2304
- * Minor fixes.
2305
-
2306
- = 5.125 August 26 2019 =
2307
- * Fix: PHP Notices.
2308
- * Fix: Auto update.
2309
- * Fix: Displaying protection status for IP license.
2310
- * Fix: prevent capturing buffer for XMLRPC requests (check_external functionality).
2311
- * Fix: API key validating.
2312
- * New: Complete deactivation setting.
2313
-
2314
- = 5.124.1 August 8 2019 =
2315
- * Fix: Error on PHP 5.3.
2316
-
2317
- = 5.124 August 8 2019 =
2318
- * Spam protection improved.
2319
- * Fix: SpamFireWall local database counter on Multisite.
2320
- * Fix: Caldera Forms integration.
2321
- * Fix: Settings "Use AJAX for JS check" description.
2322
- * Fix: Formidable integration.
2323
- * New: External forms check now independed from JavaScript.
2324
- * New: Setting Protect external - capture buffer.
2325
- * New: QuForm integration.
2326
-
2327
- = 5.123 July 25 2019 =
2328
- * Fix: Plenty of minor fixes.
2329
- * Fix: wpDiscuz integration.
2330
- * Fix: Integration with bbPress.
2331
- * Fix: New comment email notification.
2332
- * New: Follow-Up Emails integration.
2333
- * Fix: Woocommerce integration.
2334
- * Fix: Spelling.
2335
-
2336
- = 5.122 July 10 2019 =
2337
- * Spam Protection improved.
2338
- * Fix: Error while checking account status.
2339
- * Fix: Conflict with Elementor Pro.
2340
- * Fix: Integration with Ninja Forms.
2341
- * Fix: Integration with Formidable.
2342
- * New: Detecting mobile devices.
2343
- * New: Integration for Easy Forms for Mailchimp.
2344
-
2345
- = 5.121 June 26 2019 =
2346
- * Fix: Translation typos.
2347
- * Fix: Woocommerce integration.
2348
- * Fix: Catching admin in AJAX queries.
2349
- * Mod: Session table (cleantalk_sessions) issue.
2350
- * Mod: Spam protection improved.
2351
- * Integration: Wilcity theme custom registration validation enabled
2352
- * New: Option "Use static JS key".
2353
-
2354
- = 5.120.2 June 17 2019 =
2355
- * Fix: WPForms integration.
2356
- * Fix: Translation and spelling.
2357
- * Fix: Minor PHP error
2358
-
2359
- = 5.120.1 June 6 2019 =
2360
- * Mod: Description for Search form protection.
2361
- * Fix: CSS and JS attachment.
2362
- * Fix: Undefined index error.
2363
-
2364
- = 5.120 June 5 2019 =
2365
- * Fix: bbPress false positives.
2366
- * Fix: SpamFireWall check condition.
2367
- * Fix: SpamFireWall block page.
2368
- * Fix: Catch admin action via search form test.
2369
- * Fix: Catch admin action (AJAX).
2370
- * Mod: Using minified version of JS and CSS.
2371
- * Mod: Date format in statistics.
2372
-
2373
-
2374
- = 5.119.1 May 30 2019 =
2375
- * Fix: Helper class error.
2376
-
2377
- = 5.119 May 30 2019 =
2378
- * Fix: No more second request after registration.
2379
- * Fix: Activation hook.
2380
- * Fix: Alternative sessions. Clear table.
2381
- * Fix: Stop capchuring AJAX requests in admin area.
2382
- * Fix: Spelling.
2383
- * Fix: Registration cookies set.
2384
- * Mod: SFW exdtended die page when testing.
2385
- * Mod: User-agent modified.
2386
- * New: Test search queries for spam.
2387
- * New: Gathering and output statistics.
2388
-
2389
- = 5.118.4 May 13 2019 =
2390
- * Fix: SFW cookie. Set correct domain for subdomains.
2391
- * Fix: SFW update.
2392
- * Fix: IP detection.
2393
- * Fix: Triggering AJAX check in backend.
2394
- * Fix: Zero submit time on few forms.
2395
-
2396
- = 5.118.3 April 29 2019 =
2397
- * Fix: Spam statistics in dashboard widget.
2398
- * Fix: IP detection.
2399
- * Fix: Double check AJAX integrated forms like Ninja Forms.
2400
- * Fix: Use url exclusions for AJAX forms.
2401
-
2402
- = 5.118.2 April 25 2019 =
2403
- * Mod: Spam filtration quality improved.
2404
- * Mod: Store SFW cookie for 30 days.
2405
- * Mod: Server IP added to connection report.
2406
- * Fix: spam_stat is not defined.
2407
-
2408
- = 5.118.1 April 19 2019 =
2409
- * Fix: Fatal error.
2410
- * Mod: Spam protection improved on registrations.
2411
-
2412
- = 5.118 April 19 2019 =
2413
- * Fix: Cookies on registration page.
2414
- * Fix: Update fix.
2415
- * Fix: Wordpress built-in API.
2416
- * Fix: WooCommerce checkout form.
2417
- * Fix: UpdraftPlus. Saving settings.
2418
- * Fix: Convert Pro saving settings.
2419
- * Fix: UTF-8 Converting.
2420
- * Fix: GDPR notice.
2421
- * Fix: cleantalk_sessions table size reduced.
2422
- * Mod: Localization.
2423
- * Mod: Performance improved.
2424
- * Mod: SpamFierWall improvments.
2425
- * Mod: IP detection improved.
2426
- * Mod: JavaScript check rewised.
2427
- * New: Setting "Use alternative mechanism for cookies".
2428
-
2429
- = 5.117.1 April 5 2019 =
2430
- * Fix: GDPR notice.
2431
- * Fix: noCacheJS localization.
2432
- * Fix: Fatal error when updating.
2433
-
2434
- = 5.117 March 27 2019 =
2435
- * New: Update logic runs on all pages.
2436
- * New: Integration for Ajax Contact Forms plugin.
2437
- * New: Notification for users groups about new comments.
2438
- * New: SFW die page. Show browser and page creation time.
2439
- * Fix: Huge bug in Cleantalk.php connected with servers changing.
2440
- * Fix: Check AJAX requests for logged in users.
2441
- * Fix: Deleting debug in JS.
2442
- * Fix: Validating settings before saving.
2443
-
2444
- = 5.116.3 March 14 2019 =
2445
- * Fix: "Headers already sent" error.
2446
- * Fix: Images paths.
2447
- * Fix: IP detection.
2448
- * Fix: Skip lost password form check
2449
- * Fix: Skip mobile requests (push settings)
2450
- * Fix: PHP notice when detecting BuddyPress template.
2451
-
2452
- = 5.116.2 March 7 2019 =
2453
- * Fix: Creating tables in MariaDB.
2454
-
2455
- = 5.116.1 March 6 2019 =
2456
- * Fix: Creating tables in DB.
2457
- * Fix: PHP Warning in spam statistics widget.
2458
-
2459
- = 5.116 March 6 2019 =
2460
- * Spam filtration quality improved.
2461
- * New: Storing visited URLs.
2462
- * New: Check before validation Contact Form 7, Comments, Jetpack comments.
2463
- * New: Get validation result for Contact Form 7, Comments, Jetpack comments.
2464
- * Fix: ES add subscriber.
2465
- * Fix: IP detection.
2466
-
2467
- = 5.115.2 February 27 2019 =
2468
- * Fix: False positives spam detection in WP Forms and Contact Form 7.
2469
-
2470
- = 5.115.1 February 16 2019 =
2471
- * Fix: SpamFireWall's false positives.
2472
-
2473
- = 5.115 February 14 2019 =
2474
- * Fix: Http_only flag for backend cookies.
2475
- * Fix: Spam filtration improved.
2476
- * New: IP detection improved.
2477
- * Fix: SpamFirewall update speeded up.
2478
- * New: False positives with caching solutions decreased.
2479
- * New: Opportunity to use Wordpress HTTP API to connect with Cloud.
2480
-
2481
- = 5.114 January 31 2019 =
2482
- * New: Setting "Use Wordpress HTTP API" as alternative to CURL. Disabled by default.
2483
- * Fix: Formidable: Adding small JS check when adding JS_key.
2484
- * Mod: layout of settings page.
2485
- * Mod: Banner logic altered.
2486
-
2487
- = 5.113.2 January 18 2019 =
2488
- * Fix: "Settings" link returns to plugin page.
2489
-
2490
- = 5.113.1 January 17 2019 =
2491
- * Fix: Conflict with CityTours theme.
2492
- * Fix: Error for Wordperss lower 4.7.
2493
- * Add: Spam protection: "Validate email for existance".
2494
-
2495
- = 5.113 January 16 2019 =
2496
- * Fix: Fast and Simple Contact Form.
2497
- * Fix: Settings layout.
2498
- * Fix: Error with WooCommerce Quickview.
2499
- * Fix: Bitrix24 contact form.
2500
- * Fix: Request time decreased.
2501
- * Fix: Requesting account status when activating for IP licenses.
2502
- * Add: Precise AJAX request detection.
2503
- * Spam protection improved.
2504
-
2505
- = 5.112 December 21 2018 =
2506
- * Fix: Woocommerce AJAX checkout form.
2507
- * Fix: Profile Builder Pro.
2508
- * Fix: DB structure improvements for WPMS.
2509
- * Spam filtering quality improved.
2510
- * Minor fixes.
2511
-
2512
- = 5.111 December 13 2018 =
2513
- * Fix: Double request in JetPack contact form.
2514
- * Fix: Email notification about spam registration.
2515
- * Fix: Links button for feedback comments.
2516
- * Fix: Mail notification about plugin error.
2517
- * Fix: Key field output.
2518
- * Minor fixes.
2519
-
2520
- = 5.110 November 29 2018 =
2521
- * Integration: BuddyPress ActivityWall spam protection.
2522
- * Add: Support different BuddyPress templates on activity wall.
2523
- * Fix: Admin/moderator checking for validate post data.
2524
- * Add: GDPR setting for shortcode.
2525
- * Fix: Increase timeout for spam_check_cms to 15.
2526
-
2527
- = 5.109 November 15 2018 =
2528
- * Fix: Added URL and IP exclusions to Contact Form 7.
2529
- * Fix: js error when responseText is not exists
2530
- * Fix: Sitename when getting key automatically under WPMS.
2531
- * Mod: SpamFireWall is now fully compatible with WPMS.
2532
- * Mod: Setting 'Tell others about CleanTalk' was deleted.
2533
- * Mod: Protection from spam improved.
2534
-
2535
- = 5.108.1 November 8 2018 =
2536
- * Fix: Errors with integration class.
2537
-
2538
- = 5.108 November 7 2018 =
2539
- * Fix: White label mode.
2540
- * Fix: SpamFireWall now can be disabled.
2541
- * Fix: Layout.
2542
- * Integration: WPForms.
2543
- * Add: Message about block for all no integrated AJAX forms.
2544
- * Add: Displaying account name near api key.
2545
-
2546
- = 5.107 October 29 2018 =
2547
- * Fix: Ninja Forms integration.
2548
- * Fix: Cookie usage.
2549
- * Add: Capturing AJAX responses from non integrated forms.
2550
- * Spam protection improved.
2551
- * Minor fixes.
2552
-
2553
- = 5.106 October 11 2018 =
2554
- * Spam filtration improved.
2555
- * New: White Label mode.
2556
- * Modification: Warning message about test on SpamFireWall die page.
2557
- * Integration: WP Maintenance Mode.
2558
- * Fix: S2Member.
2559
- * Fix: JavaScript attachments reconsidered.
2560
- * Fix: Admin banners layout.
2561
- * Fix: Minor layout fixes.
2562
-
2563
- = 5.105 September 26 2018 =
2564
- * Integration: Now bloking spam for QAEngine questions.
2565
- * Fix: Async http__request call.
2566
- * Fix: Unnecessary get_antispam_report_breif method call.
2567
- * Layout: Hide "Do you like Cleantlak?" when key is not ok.
2568
- * Layout: Minor fixes.
2569
-
2570
- = 5.104 September 18 2018 =
2571
- * Fix: Error when saving settings.
2572
- * Fix: Trying update plugin plugin for the first installation.
2573
- * Fix: Update system.
2574
- * Fix: Errors output.
2575
- * Fix: Plugin's settings under WPMS.
2576
- * Fix: SpamFireWall update.
2577
- * Fix: The server change system repaired.
2578
- * Mod: Cron saving tasks improved.
2579
-
2580
- = 5.103.1 September 14 2018 =
2581
- * Fix: Error when saving settings.
2582
- * Fix: Error when getting key automatically.
2583
-
2584
- = 5.103 September 13 2018 =
2585
- * Fix: Gravity Forms response message.
2586
- * Fix: SpamFireWall redirect to 404 page.
2587
- * Major anti-spam plugin improvement.
2588
- * Recombined setting page.
2589
- * Added error notification.
2590
- * Mod: S2 Members integration.
2591
- * Mod: Improved remote calls.
2592
-
2593
- = 5.102 August 29 2018 =
2594
- * Fix: Users and comments check.
2595
- * Fix: Update from 5.70 or previous versions.
2596
- * Fix: GDPR public JS-script.
2597
- * Fix: Dashboard widget JS scripts attachment.
2598
- * Fix: WooCommerce "Place order" action.
2599
- * Mod: Notification logic altered.
2600
- * Mod: Users check table now has 'Signed up' column.
2601
- * Minor fixes.
2602
-
2603
- = 5.101 August 10 2018 =
2604
- * Fix: Set cookie only for non-dashboard pages.
2605
- * Fix: Dashboard widget JS error.
2606
- * Fix: JavaScript error for some environment.
2607
- * Mod: Antispam protection accelerated for some pages.
2608
-
2609
- = 5.100 July 30 2018 =
2610
- * Fix: JavaScript dependencies.
2611
-
2612
- = 5.99.1 July 17 2018 =
2613
- * IP detection fixed and improved.
2614
-
2615
- = 5.99 July 10 2018 =
2616
- * Fix: WooCommerce false positives.
2617
- * Fix: SpamFireWall IP detection.
2618
- * Minor fixes.
2619
-
2620
- = 5.98 June 27 2018 =
2621
- * Fix: WooCommerce: Exclusion.
2622
- * Fix: Public GDPR JS code.
2623
- * Minor fixes.
2624
-
2625
- = 5.97 June 7 2018 =
2626
- * Fix: Update system.
2627
- * Fix: Feedback from public page (admin only).
2628
- * Fix: Users and comment check: API error.
2629
- * Fix: Too many negative reports. (Too big ct_data option)
2630
- * Fix: SpamFireWall: Infinite redirection on the blocking page.
2631
- * Minor fixes.
2632
-
2633
- = 5.96 May 22 2018 =
2634
- * Fix: Update system.
2635
- * Mod: Reset all counters button in admin bar.
2636
- * Mod: GDPR compliance.
2637
- * Minor fixes.
2638
-
2639
- = 5.95.1 May 3 2018 =
2640
- * Fix: "Get key automatically" button display logic.
2641
- * Fix: PHP notices.
2642
-
2643
- = 5.95 May 2 2018 =
2644
- * Spam filtration improved.
2645
- * Fix: Public widget layout.
2646
- * Fix: Connection reports output.
2647
- * Minor fixes.
2648
-
2649
- = 5.94 April 23 2018 =
2650
- * Mod: Async load option for JS.
2651
- * Mod: JS scripts loading is conditional.
2652
- * Fix: IP detection.
2653
- * Fix: IP detection.
2654
- * Fix: Javascript error.
2655
-
2656
- = 5.93.1 April 9 2018 =
2657
- * Fix: Fatal error on PHP 5.5 or lower.
2658
-
2659
- = 5.93 April 9 2018 =
2660
- * Fix: SpamFirewall IP detection.
2661
- * Fix: Contact Form 7. False positives.
2662
- * Mod: Autoupdate function improved.
2663
- * Minor fixes.
2664
-
2665
- = 5.92.2 March 23 2018 =
2666
- * Fix: Error if cURL extension is disabled.
2667
-
2668
- = 5.92.1 March 23 2018 =
2669
- * Fix: Spelling
2670
- * Fix: Fatal error if cURL extension is disabled.
2671
-
2672
- = 5.92 March 22 2018 =
2673
- * IP detection improved.
2674
- * Fix: SSL connection.
2675
- * Fix: False positives spam detection in Contact Form 7.
2676
- * Minor fixes.
2677
-
2678
- = 5.91 March 15 2018 =
2679
- * Fix: Errors for PHP compiled without XML support.
2680
- * Fix: Spelling and translation.
2681
- * Stability increased.
2682
- * Minor fixes.
2683
-
2684
- = 5.90 March 7 2018 =
2685
- * Improvement: Better IP recognition in Spam FireWall.
2686
- * Fix: Gravity Froms blocking message.
2687
- * Security improvments.
2688
- * Minor fixes.
2689
-
2690
- = 5.89 February 21 2018 =
2691
- * Improved spam filtration quality.
2692
- * Improved compatibility.
2693
- * Public widget: Styles and referral link added.
2694
- * Dashboard widget: revised and fixed.
2695
- * Minor fixes.
2696
-
2697
- = 5.88 February 12 2018 =
2698
- * Integration: ConvertPro.
2699
- * Improvement: Search for visitor's names in request.
2700
- * Fix: Contact Form 7 message recognition.
2701
- * Preparation for the remote plugin update.
2702
- * Minor fixes.
2703
-
2704
- = 5.87 February 2 2018 =
2705
- * Filtration quality improved.
2706
- * Fix: WP Foto Vote downloading images.
2707
- * Fix: Fatal error for unsupported PHP 5.2.
2708
- * Fix: Formidable Forms improved spam filtration.
2709
-
2710
- = 5.86 January 25 2018 =
2711
- * Fix: High CPU load with wp-ajax.php.
2712
- * Fix: Mailpoet: Newsletter.
2713
- * Fix: Gravity: Forms standardization for input fields.
2714
- * Fix: ajax hook checks data for contact form.
2715
- * Fix: UTF8 character in requests.
2716
-
2717
- = 5.85 January 11 2018 =
2718
- * Fix: Fast Secure contact form spam block message.
2719
- * Fix: IP license status.
2720
- * Layout: Dashboard widget description altered.
2721
-
2722
- = 5.84 December 26 2017 =
2723
- * Integration: PeepSo contact form
2724
- * Repared: Feedback from comments page.
2725
- * Fix: mb_* functions used only if exists.
2726
- * Fix: Gravity forms: Multi-page form logic repared.
2727
- * Fix: Gravity forms: AJAX form logic repared.
2728
- * Minor fixes.
2729
-
2730
- = 5.83.2 December 19 2017 =
2731
- * Fix: Error in base class.
2732
-
2733
- = 5.83.1 December 19 2017 =
2734
- * Fix: CDN IP detection.
2735
-
2736
- = 5.83 December 19 2017 =
2737
- * Improving: Stability and compatibility.
2738
- * Improving: Spam protection.
2739
- * Fix: Comments logic filtration.
2740
- * Fix: Admin bar counter.
2741
- * Minor errors fixes.
2742
-
2743
- = 5.82.1 December 7 2017 =
2744
- * Fixed minor error with attaching JS and CSS files.
2745
-
2746
- = 5.82 December 4 2017 =
2747
- * Plugin doesn't use PHP sessions anymore.
2748
- * Bug fixes.
2749
- * Improved update logic.
2750
-
2751
- = 5.81 November 22 2017 =
2752
- * Fixed error with "Show/Hide key" button.
2753
- * Slightly improved spam protection for all forms.
2754
- * Small errors fixes.
2755
-
2756
- = 5.80 November 3 2017 =
2757
- * Spam protection improved.
2758
- * Improved filtration quality for WooCommerce checkout.
2759
- * Minor fixes for Spam FireWall.
2760
-
2761
- = 5.79 October 26 2017 =
2762
- * Spam protection improved.
2763
- * Fixed issue with existing spam comments check.
2764
- * Added posibility to exclude IP from check.
2765
- * Minor fixes.
2766
-
2767
- = 5.78 October 16 2017 =
2768
- * Improved compatibility with themes. Changed core functions prefix.
2769
- * Fixed issue with WooCommerce checkout.
2770
- * Spam protection improved.
2771
- * Minor fixes.
2772
-
2773
- = 5.77 October 2 2017 =
2774
- * Connection report's system.
2775
- * Integration for CouponXXL Theme.
2776
- * Fixed issue with mb_* functions.
2777
- * Banners logic updated.
2778
-
2779
- = 5.76 September 20 2017 =
2780
- * Fixed issue with Spam FireWall and caching plugins.
2781
- * Banners logic updated.
2782
-
2783
- = 5.75 September 15 2017 =
2784
- * Pause feature for users/comments spam check.
2785
- * Improved protection from spam.
2786
- * Small fixes.
2787
-
2788
- = 5.74.2 September 2 2017 =
2789
- * Fix for users spam check for PHP 5.3 and lower.
2790
-
2791
- = 5.74.1 September 2 2017 =
2792
- * Fix for the update system and cloud communication.
2793
- * Added possibility to check users and comments for spam with a specific date range.
2794
-
2795
- = 5.74 August 31 2017 =
2796
- * Users and comments spam check: Two check types (fast and accurate).
2797
- * Fix for WooCommerce checkout test.
2798
- * Minor fixes.
2799
-
2800
- = 5.73 August 11 2017 =
2801
- * Fix for spam check for already existed users and comments.
2802
- * Spam FireWall updated.
2803
- * Layout fix for BT Comments.
2804
- * Minor fixes.
2805
-
2806
- = 5.72 July 27 2017 =
2807
- * Improved spam check for existed users and comments.
2808
- * Minor fixes.
2809
-
2810
- = 5.71 July 20 2017 =
2811
- * Improved spam protection for external forms.
2812
- * Optimization.
2813
- * Minor fixes.
2814
-
2815
- = 5.70.2 July 17 2017 =
2816
- * Fix for Spam FireWall for Multisite.
2817
-
2818
- = 5.70.1 July 17 2017 =
2819
- * Fix for Spam FireWall.
2820
- * Spam detection improved.
2821
-
2822
- = 5.70 July 13 2017 =
2823
- * New updater logic.
2824
- * Self cron system.
2825
- * Improved AMP compatibility.
2826
- * Optimization.
2827
- * Fixed users and comments spam check.
2828
- * Fixed layout for Comment's feedback from public page.
2829
- * Updated Spam FireWall.
2830
- * SFW: Spam FireWall counter now work in real-time.
2831
- * SFW: Improved compatibility with different Data Bases.
2832
-
2833
- = 5.69 July 3 2017 =
2834
- * Reviewer - integration.
2835
- * Optimization for Users and Comments check for big databases.
2836
- * Errors fixes.
2837
- * Improved protection from spam.
2838
-
2839
- = 5.68 June 22 2017 =
2840
- * Contact Form for WordPress - Ultimate Form Builder Lite - integration.
2841
- * Contact Bank - Contact Forms Builder - integration.
2842
- * Smart Forms - integration.
2843
- * cformsII - integration.
2844
- * Contact Form by Web-Settler - integration.
2845
- * Error fixes.
2846
-
2847
- = 5.67.3 June 9 2017 =
2848
- * Fixed JS attachment error.
2849
-
2850
- = 5.67.2 June 5 2017 =
2851
- * Fixed error with IP determination.
2852
-
2853
- = 5.67.1 June 4 2017 =
2854
- * Fixed JS error in 5.67 version.
2855
- * Integrations: Enfold theme, Convertplug.
2856
- * Links to check for Emails/IP for spam.
2857
- * Control comments and feedback about them from public post's page.
2858
- * Improved connection stability with cloud service.
2859
- * Spam protection improved.
2860
- * Other small fixes.
2861
-
2862
- = 5.67 June 1 2017 =
2863
- * Integrations: Enfold theme, Convertplug.
2864
- * Links to check for Emails/IP for spam.
2865
- * Control comments and feedback about them from public post's page.
2866
- * Improved connection stability with cloud service.
2867
- * Spam protection improved.
2868
- * Other small fixes.
2869
-
2870
- = 5.66 May 23 2017 =
2871
- * Spam protection improved.
2872
- * Major fixes for users and comments spam check.
2873
- * Added feedback from Wordpress comments list.
2874
- * Fix for "internal forms check" option.
2875
- * Fixed issue with caching Spam FireWall die page.
2876
- * Other small fixes.
2877
-
2878
- = 5.65 May 16 2017 =
2879
- * Fix for PayPal redirecton.
2880
- * Fixed issue with empty query for bulk comments test.
2881
- * Added protection for Enfold contact form.
2882
- * Ninja forms integration.
2883
-
2884
- = 5.64 April 26 2017 =
2885
- * Integration for Facebook registrations.
2886
- * Small fixes for WPMS.
2887
- * Fix for Activecampaign service.
2888
- * Fix for check spam users.
2889
- * Fixed rare notice Notice: Undefined index: REQUEST_URI
2890
-
2891
- = 5.63 April 20 2017 =
2892
- * Fix for the dashboard spam stat widget.
2893
- * Added translation posibility for all text.
2894
-
2895
- = 5.62 April 17 2017 =
2896
- * Fix for the dashboard spam statistics widget.
2897
- * Fix for users spam check.
2898
- * Small appearance changes.
2899
-
2900
- = 5.61 April 6 2017 =
2901
- * Improved filtration.
2902
- * Additional logic for the form recognizing.
2903
- * Integration: Divi Theme Contact Form.
2904
- * Fix: Gravity Forms multipages forms.
2905
- * Stat Widget: Minor fixes.
2906
- * Added possibility to download results of the users check in CSV format.
2907
- * Alteration for settings page (footer).
2908
-
2909
- = 5.60.1 March 29 2017 =
2910
- * Fixed error function 'locale_get_display_region' no exists.
2911
-
2912
- = 5.60 March 29 2017 =
2913
- * Added main dashboard widget with spam sctivity stats.
2914
- * Mailster - integration.
2915
- * Base class updated.
2916
-
2917
- = 5.59 March 24 2017 =
2918
- * Users/comments check fix.
2919
- * Plugin's name changed to Anti-Spam by CleanTalk.
2920
- * Trial banner is dismissable. Disapear for 24h or till logout.
2921
- * Settings modified (Auto testing failed warning).
2922
- * Mailing(inactive key) interval increased to 6 hours.
2923
-
2924
- = 5.58.6 March 16 2017 =
2925
- * Fix for Ninja forms (protection updated).
2926
- * Fix for QA Theme.
2927
- * Fix for RSVP form.
2928
- * Setting changes (Spam FireWall).
2929
- * Improved debug section.
2930
- * Improved gathering data function.
2931
- * Minor fixes.
2932
-
2933
- = 5.58.5 March 6 2017 =
2934
- * Minor backend fix.
2935
-
2936
- = 5.58.4 March 6 2017 =
2937
- * Users check fix (redirect after the check).
2938
- * Fixed PHP Notice "HTTP_REFERER" is unset.
2939
- * Updated Notice logic.
2940
-
2941
- = 5.58.3 February 28 2017 =
2942
- * Bitrix24 Contact form integration.
2943
- * Users/comments check fix.
2944
- * Spam sorting updated.
2945
- * Banner showing logic.
2946
-
2947
- = 5.58.2 February 17 2017 =
2948
- * Cron fix for daily report.
2949
-
2950
- = 5.58.1 February 16 2017 =
2951
- * Minor fixes.
2952
-
2953
- = 5.58 February 15 2017 =
2954
- * Work without access key
2955
- * Bitrix24 contact integration
2956
- * Issues fixes
2957
-
2958
- = 5.57.1 February 8 2017 =
2959
- * Fix for notice logic.
2960
-
2961
- = 5.57 February 8 2017 =
2962
- * Setting page changes.
2963
- * Bug fixes for WooCommerce.
2964
- * Spam FireWall filters only GET requests.
2965
- * Optimization.
2966
- * Minor and major fixes.
2967
-
2968
- = 5.56.1 January 25 2017 =
2969
- * Minor fixes
2970
-
2971
- = 5.56 January 19 2017 =
2972
- * Integrations: MailChimp Premium, Profile Press.
2973
- * Changes comments flow.
2974
- * FireWall updater fix.
2975
- * Users check optimization.
2976
-
2977
- = 5.55 December 23 2016 =
2978
- * Integrations: Caldera Forms, Visual Form Builder.
2979
- * Fix for different 'cookies' header names.
2980
- * Fixed user deletion.
2981
-
2982
- = 5.54 December 12 2016 =
2983
- * Integrations: AmoForms, Contact Form Clean and Simple.
2984
- * Comments check logic refreshed.
2985
- * Registration JS error fix.
2986
- * Users check fix.
2987
- * Fix for translation system.
2988
- * Minor fixes.
2989
-
2990
- = 5.53.1 December 9 2016 =
2991
- * Minor layout fixes.
2992
-
2993
- = 5.53 November 28 2016 =
2994
- * Addition warning before deleting users.
2995
- * Spam FireWall is enabled by default.
2996
- * Usernoise modal feedback / contact form : integration.
2997
- * Translations.
2998
- * Optimization.
2999
- * Fixes.
3000
-
3001
- = 5.52.1 November 14 2016 =
3002
- * Users and comments check: Using new API method.
3003
- * Quick Contact From: Integration via "Custom Contact Forms" setting.
3004
- * JavaScript filtration improved.
3005
- * Translation changes.
3006
- * Optimized JavaScript code.
3007
-
3008
- = 5.51 November 2 2016 =
3009
- * Added protection for internal forms
3010
- * Immediate spam check for comments and users from WP dashboard
3011
- * Optimized code
3012
-
3013
- = 5.50.1 October 24 2016 =
3014
- * Improved filtration in contact forms.
3015
- * Spam FireWall: Fixed issue with SFW logs
3016
- * Skipping service fields: Fast Secure Contact Froms, QU Forms, Custom Contact Forms
3017
-
3018
- = 5.50 October 20 2016 =
3019
- * Custom contact forms: integration.
3020
- * Pirate Forms: integration.
3021
- * PHP 7 compatibility: Deleted third-party JSON library and dependences.
3022
- * PHP 7 compatibility: Fixed end of lines.
3023
- * YOAST Seo: Fixed PHP warnings.
3024
- * Spam FireWall: Minor fix for Spam FireWall counter.
3025
- * Only admin could access to CleanTalk dashboard (exclude Authors an Editors).
3026
- * Improved filtration in contact forms.
3027
-
3028
- = 5.49.2 October 5 2016 =
3029
- * Second Fix for database error. Stable version.
3030
-
3031
- = 5.49.1 October 5 2016 =
3032
- * Fixed database error.
3033
-
3034
- = 5.49 October 3 2016 =
3035
- * Spam FireWall feature: Class upgraded.
3036
- * New feature: Delete links from approved comments.
3037
- * Settings: Grouped.
3038
- * Settings: Altered description fixed spelling mistakes.
3039
- * Settings: Added indicator for Spam FireWall.
3040
- * Admin bar: Added Spam FireWall counter
3041
- * Clean and Simple Contact Form: Direct integration.
3042
- * WooCommerce: Don't check password recovery form.
3043
- * WooCommerce Wishlists: Issue with check for Google bots.
3044
- * JetPack: contact form fix.
3045
- * Fixed and created the defaults for all CleanTalk options.
3046
- * Fixed spelling mistakes.
3047
-
3048
- = 5.48 September 15 2016 =
3049
- * buddyPress: Added private messages filtering. Doesn't check user if he has 3 or more messages in the "sentbox" and "inbox" folders.
3050
- * buddyPress: Added option in settings for private messages check.
3051
- * WooCommerce Wishlist: Added check for wishlists.
3052
- * Fixed issue with "check all post data" option.
3053
- * Improved filtering for Gravity Forms
3054
- * Mobile Assistant Connector fix
3055
- * Minor fixes.
3056
-
3057
- = 5.47 September 5 2016 =
3058
- * WooCommerce: direct integration for checkout form.
3059
- * WooCommerce Sensei: login form fix.
3060
- * bbPress: Added the check for topics and comments with stop_words
3061
- * bbPress: Skip check for admin in comments and topics
3062
- * UserPro: fixes. Request without field "shortcode"
3063
- * Contact Form 7: Bug fix.
3064
- * Spam FireWall: Optimized logs rotation.
3065
- * Updated inner functions (compatibility fix for PHP 5.4+)
3066
- * Fixed output of counters (without spamfirewall stats)
3067
- * Fixed spelling in settings
3068
- * Added "Delete from the list" button in comments spam check page
3069
- * Minor fixes.
3070
-
3071
- = 5.46 August 17 2016 =
3072
- * Fixed issue with admin bar links in WP Multi Network mode.
3073
- * Added "All time counter" and "Daily counter" into admin bar.
3074
- * Added settings to disable counters in admin bar.
3075
- * New style for "Get access key manually" button.
3076
-
3077
- = 5.45.2 August 4 2016 =
3078
- * Added Anti-Spam protection for Quick Event Manager.
3079
- * Improved bulk spam test for users. Now the plugin does not mark as Spam user, if the user IP address has spam activity more then 30 days ago.
3080
- * Fixed bulk spam test for comments. Previous version had a conflict between spam history for IP and Email.
3081
- * Minor fix function to get the API key.
3082
-
3083
- = 5.45.1 July 26 2016 =
3084
- * Fixed issue with missed spam messages, subscriptions.
3085
- * Improved bulk spam test for comments. Now the plugin will not mark as Spam comments, if a comment sender (IP address) has spam activity more then 30 days ago.
3086
-
3087
- = 5.45 July 21 2016 =
3088
- * Optimized bulk spam comments deletion.
3089
- * Turned off JavaScript anti-spam cookies if the option 'Set cookies' is turned off. It helps to avoid issues with Varnish.
3090
- * Added links to bulk spam comments&users removal tool.
3091
-
3092
- = 5.44.1 July 13 2016 =
3093
- * Optimized options getting code.
3094
- * Added the option 'Protect Logged in users' to do anti-spam tests for submissions by logged in users.
3095
-
3096
- = 5.43.2 June 30 2016 =
3097
- * Optimized anti-spam code for AJAX based contact forms.
3098
- * Fixed CSS layout of counters in Admin bar (issue with layout in IE11).
3099
-
3100
- = 5.43.1 June 23 2016 =
3101
- * Added agent version in requests to test a connection between the website and servers.
3102
- * Fixed issue with PHP notices in cleantalk-admin.php.
3103
-
3104
- = 5.43 June 22 2016 =
3105
- * Added spam protection for registrations via 'Login with AJAX' plug-in.
3106
- * Added a new counter to Admin bar that allows to count spam and approved submissions since last reset.
3107
- * Update the code that tests a connection between a website and CleanTalk's servers. New version doesn't generate submissions with email good@cleantalk.org.
3108
- * Fixed issue with spam protection for nested forms by Formidable plug-in.
3109
-
3110
- = 5.42 2016-06-15 =
3111
- * Added anti-spam protection for UserPro.
3112
- * Improved protection for Formidable forms + Varnish.
3113
- * Improved bulk search for spam accounts.
3114
- * Fixed spam protection for pages that contain multiple Formidable forms with same HTML ID.
3115
- * Optimized PHP code to be compatible with PHP 5.4 and above. The patch has been applied to Formidable forms spam protection.
3116
- * Minor fixes in plugin backend.
3117
-
3118
- = 5.41 2016-05-31 =
3119
- * Added HTTP response in plugin response if an network issue was happend.
3120
- * Optimized JavaScript anti-spam test for Formidable forms.
3121
- * Re-stored the option to auto redirect to plugn settings after plugin activation.
3122
- * Fixed issue with nasted fields in Formidable forms.
3123
-
3124
- = 5.40.3 2016-05-26 =
3125
- * Added option to encrypt (SSL) connection to CleanTalk anti-spam servers.
3126
- * Added JSON encoding for AJAX forms.
3127
- * Obfuscated private data for Custom contact forms option.
3128
- * Optimized bulk users check for spam over blacklists database.
3129
- * Fixed issue with lost connection to servers and JavaScript anti-spam test.
3130
- * Fixed issue with WordFence and collect_details.
3131
-
3132
- = 5.40.2 2016-05-11 =
3133
- * Improved account status check logic.
3134
- * Fixed issue with double anti-spam tests for FastSecure contact forms.
3135
- * Fixed issue with nulled JavaScript variables assigned from backend. This issue might me occurred on standart WordPress registration form and with failed JavaScript spam test.
3136
- * Fixed issue with session_start() with PHP sessions stored in memcache.
3137
-
3138
- = 5.40.1 2016-04-28 =
3139
- * Fixed issue with Super Socializer.
3140
- * Fixed issue with spam filtration for logged in users and Formidable forms.
3141
- * Added logging of all submitted fields for FastSecure contact form.
3142
-
3143
- = 5.40 2016-04-19 =
3144
- * Added JSON encoding for posts that were protected via Custom contact forms option. It allows show anti-spam logs in the Dashboard in more comfortable view.
3145
- * Minor fix in plugin settings.
3146
- * Fixed pagination for bulk users spam test.
3147
- * Fixed issue with unknown _SESSION.
3148
- * Fixed issue with double Spam FireWall database upload.
3149
-
3150
- = 5.39.1 2016-04-04 =
3151
- * Improved AJAX based anti-spam test with HTTPS backends.
3152
- * Added fix to avoid issue with empty ct_info_flag on JavaScript side.
3153
- * Added logic to exclude caching for Spam FireWall.
3154
- * Removed a condition to skip accounts with 127.0.0.1 IP in spam test for registered acconts.
3155
-
3156
- = 5.38.1 2016-03-24 =
3157
- * Fixed issue with PHP sessions and 'The session id is too long or contains illegal characters'.
3158
- * Removed Spam FireWall protection on /feed page.
3159
- * Disabled anti-spam tests for AJAX calls if the option 'Custom contact forms' is turned off.
3160
- * Added reject notice for spam submissions on Gravity forms with AJAX calls.
3161
-
3162
- = 5.37.3 2016-03-10 =
3163
- * Minor bug fixes. Added an option to support Varnish cache.
3164
-
3165
- = 5.36.1 2016-02-05 =
3166
- * Fixed bug, when users receive error after logging in
3167
-
3168
- = 5.36 2016-02-04 =
3169
- * Improved JavaScript anti spam protection
3170
- * Improvements for avoiding blocking requests from payment systems
3171
-
3172
- = 5.35 2016-01-14 =
3173
- * Added support for IP licensing
3174
- * Some anti-spam protection improvements
3175
- * Small backend interface fixes
3176
-
3177
- = 5.34.1 2015-12-17 =
3178
- * Fixed trackback antispam protection: improved checking mechanism
3179
- * Fixed problem with blocking MailPoet: added exclusions in spam checking algorithm
3180
-
3181
- = 5.34 2015-12-10 =
3182
- * Improved spam checking mechanism
3183
- * Added "Collect browser details" option for better antispam protection
3184
- * Fixed custom contact forms checking
3185
- * Minor translations fixes
3186
-
3187
- = 5.33.1 2015-12-04 =
3188
- * Fixed issue with BBPress
3189
- * Fixed anti-spam comments checking
3190
- * Fixed bulk checking
3191
- * Fixed trackback and pingback checking
3192
-
3193
- = 5.33 2015-12-01 =
3194
- * Backend interface fixes
3195
- * Improved Spam FireWall efficiency
3196
- * Improved performance of anti spam checking
3197
-
3198
- = 5.32 2015-11-26 =
3199
- * Added improvements for manual spam detection
3200
- * Fixed errors in backend
3201
- * Fixed bulk users anti spam checking
3202
- * Added indicator for bulk spam checking
3203
- * Added "Get access key automatically" feature
3204
-
3205
- = 5.31 2015-11-11 =
3206
- * Improved backend performance
3207
- * Fixed counter of approved/blocked spam attacks
3208
- * Fixed Spam Firewall logging
3209
-
3210
- = 5.30 2015-11-05 =
3211
- * Improved anti-spam checking
3212
- * Optimized performance
3213
- * Fixed blocking email preview in MailPoet
3214
- * Interface fixes
3215
- * WPMU interface fixes
3216
-
3217
- = 5.29 2015-10-27 =
3218
- * Optimized performance
3219
- * Fixed bugs in custom contact forms spam checking
3220
-
3221
- = 5.28.7 2015-10-23 =
3222
- * Major backend peromance fix.
3223
-
3224
- = 5.28 2015-10-16 =
3225
- * Fixed errors in anti-spam checking
3226
- * Restored options for spam checking registrations and cpmmon contact forms
3227
- * Improved anti spam defence
3228
- * Fixed problems with AJAX functionality in MailPoet, WooCommerce and other AJAX plugins
3229
-
3230
- = 5.27 2015-10-13 =
3231
- * Improvements in Spam FireWall feature
3232
- * Code optimization
3233
- * Backend interface fixes
3234
-
3235
- = 5.26 2015-10-05 =
3236
- * Added WordPress Language Pack support
3237
- * Removed spam checking for some autorisation plugins
3238
- * New experimental feature: Spam FireWall
3239
-
3240
- = 5.25.2 2015-09-28 =
3241
- * Fixed backend bug
3242
-
3243
- = 5.25.1 2015-09-28 =
3244
- * Added widget with anti-spam stats
3245
- * Added information about blocked spam attacks in admin dashboard and CleanTalk settings
3246
- * Added ability not to check comments for users with 3 or above allowed comments
3247
- * Added an option 'Help others known CleanTalk' to show information for site visitors, that your site is protected from spam by us
3248
- * Some backend interface settings
3249
- * Removed "CleanTalk connection test" query
3250
-
3251
- = 5.24.1 2015-09-16 =
3252
- * Fixed some errors in frontend
3253
- * Fixed access key saving
3254
-
3255
- = 5.24 2015-09-14 =
3256
- * Backend interface fixes
3257
- * Improvement for AJAX JavaScript spam checking
3258
-
3259
- = 5.23 2015-09-01 =
3260
- * Fixed BuddyPress profile search false positivities of anti-spam protection.
3261
- * Some interface fixes of bulk users & comments spam checking
3262
-
3263
- = 5.22 2015-08-26 =
3264
- * Fixed possible XSS issue for anti-spam test on third-party forms.
3265
-
3266
- = 5.21 2015-08-21 =
3267
- * Fixed bug with skipping spam submissions
3268
- * Fixed bug with receiving old user_token for viewing anti-spam stats
3269
- * Small backend fixes
3270
-
3271
- = 5.20 2015-08-15 =
3272
- * Fixed anti-spam stats in admin bar
3273
- * Fixed issue with skipping spam submissions
3274
- * Added some PHP-constants for advanced users
3275
-
3276
- = 5.19 2015-08-11 =
3277
- * New feature: anti-spam checking for registered users
3278
- * Fixed issue with AJAX JavaScript checking
3279
- * Fixed issue with SEO Yoast xml sitemaps.
3280
-
3281
- = 5.18 2015-08-04 =
3282
- * Fixed issue with user_token
3283
- * Added anti-spam API, see our FAQ
3284
-
3285
- = 5.17 2015-07-23 =
3286
- * Fixed infinite redirection after activation
3287
- * Minor backend fixes
3288
-
3289
- = 5.16 2015-07-22 =
3290
- * Fixed external services checking
3291
- * Fixed mass comments deletion
3292
- * Fixed AJAX anti-spam protection
3293
-
3294
- = 5.15 2015-07-16 =
3295
- * New feature: anti-spam protection for forms, that uses external services
3296
-
3297
- = 5.14 2015-07-03 =
3298
- * Added anti-spam protection for some themes and plugins
3299
- * Some backend fixes
3300
-
3301
- = 5.13 2015-06-12 =
3302
- * Closing notification for anti-spam renew
3303
- * Fixed bulk anti spam comment checking
3304
-
3305
- = 5.12 2015-06-01 =
3306
- * Added option for checking all post data for spam
3307
- * Some JavaScript protection improvements
3308
- * Added option for old JavaScript check (without AJAX)
3309
-
3310
- = 5.10 2015-05-25 =
3311
- * Fixed Javascript error on some forms
3312
-
3313
- = 5.9 2015-05-21 =
3314
- * Fixed Javascript error on CF7 and JetPack
3315
- * Some backend and frontent fixes
3316
-
3317
- = 5.8 2015-05-18 =
3318
- * Minor fixes
3319
-
3320
- = 5.7 2015-05-18 =
3321
- * Fixed French translation
3322
- * Fixed protection algorithm
3323
-
3324
- = 5.6 2015-05-11 =
3325
- * Fixed translation
3326
- * Fixed bulk comments anti-spam checking
3327
- * Added option for disabling anti spam stats in adminbar
3328
- * Some security fixes
3329
-
3330
- = 5.5 2015-04-29
3331
- * Fixed security issue
3332
-
3333
- = 5.4 2015-04-27 =
3334
- * Some interface and functionality changes in plugin settings page
3335
- * Added counter for anti-spam stats in admin bar
3336
-
3337
- = 5.3 2015-04-13 =
3338
- * Added anti-spam protection for Divi theme contact forms
3339
- * Added anti-spam protection for MyMail contact forms
3340
- * Added anti-spam protection for MailPoet Newsletters
3341
- * Some interface and functionality changes in backend
3342
-
3343
- = 5.2 2015-04-01 =
3344
- * Added link for anti-spam stats
3345
- * Added WP User Frontend Pro registration form protection
3346
-
3347
- = 5.10 2015-03-24 =
3348
- * Fixed site crash after installing 5.0 on some websites
3349
-
3350
- = 5.00 2015-03-24 =
3351
- * Added bulk comments checking for spam via CleanTalk blacklists
3352
- * Added anti-spam form protection for 'Ajax Login & Register'
3353
- * Fixed JetPack form protection
3354
-
3355
- = 4.24 2015-03-20 =
3356
- Added immediate spam protection activation.
3357
-
3358
- = 4.22 2015-03-17 =
3359
- * Added button for automatic spam protection key getting.
3360
-
3361
- = 4.21 2015-03-11 =
3362
- * Added license renew notification.
3363
-
3364
- = 4.20 2015-03-03 =
3365
- * German, Italian, Polish, Portuguese translations, minor code fixes.
3366
-
3367
- = 4.19 2015-02-24 =
3368
- * Increased JS keys lifetime.
3369
-
3370
- = 4.18 2015-02-17 =
3371
- * Bugfix - fixed bug with comments approvement, PayPal 'payment_status' and Akismet 'spam' status processing.
3372
-
3373
- = 4.17 2015-02-12 =
3374
- * New base class, divided code to 3 separate files - common, public and admin.
3375
-
3376
- = 4.16 2015-02-05 =
3377
- * New base class, fixed JetPack filters logics, optimized Formidable, bbPress, BuddyPress filters.
3378
-
3379
- = 4.15 2015-01-29 =
3380
- * Support of Contact Form 7 versions before 3.0.0, fixed global JS-vars and online notice cookie logics.
3381
-
3382
- = 4.14 2015-01-19 =
3383
- * Removed deprecated option from comment approvement code.
3384
-
3385
- = 4.13 2014-12-29 =
3386
- * Not spam comments auto approvement bug fix.
3387
-
3388
- = 4.12 2014-12-29 =
3389
- * Plugin backend minfor bug fixes.
3390
-
3391
- = 4.11 2014-12-22 =
3392
- * Major changes in spam protection algorithms.
3393
-
3394
- = 4.10 2014-12-10 =
3395
- * Minor improvements for custom contact/registration/subscribe forms.
3396
-
3397
- = 4.9 2014-11-24 =
3398
- * Minor bug fix for Contact form 7.
3399
-
3400
- = 4.8 2014-11-19 =
3401
- * Improved anti-spam protection for BuddyPress registrations and custom contact forms.
3402
-
3403
- = 4.7 2014-11-16 =
3404
- * Fixed JavaScript antispam test for FastSecure contact form.
3405
-
3406
- = 4.6 2014-11-11 =
3407
- * Minor changes in anti-spam logic for BuddyPress registrations, contact forms and bbPress guest posting.
3408
-
3409
- = 4.5 2014-11-04 =
3410
- * Bug fixes for Contact form 7 and bbPress guests posting.
3411
-
3412
- = 4.4 2014-10-29 =
3413
- * Improved JS checking for CF7.
3414
-
3415
- = 4.2 2014-10-20 =
3416
- * Increased plugin perfomance for BuddyPress registrations.
3417
-
3418
- = 4.1 2014-10-13 =
3419
- * Minor anti-spam improvements for contacts, registration and contact forms.
3420
-
3421
- = 4.0 2014-10-06 =
3422
- * Major anti-spam improvements for registration and contact forms.
3423
-
3424
- = 3.9 2014-10-01 =
3425
- * Did exception to do not break to create new user in WordPress backend.
3426
-
3427
- = 3.8 2014-09-19 =
3428
- * Bug fix release. Minor fixes in API class and JavaScript anti-spam test.
3429
-
3430
- = 3.6 2014-09-15 =
3431
- * Minor fixes in anti-spam protection for Formidable and custom contact forms.
3432
-
3433
- = 3.4 2014-09-04 =
3434
- * Spam comments rotation. Custom (themes) contact forms support.
3435
-
3436
- = 3.2 2014-08-27 =
3437
- * Minor changes in spam filtration logic.
3438
-
3439
- = 3.1 2014-08-19 =
3440
- * Major changes for comments antispam logic. Improved plugin speed.
3441
-
3442
- = 2.59 2014-08-14 =
3443
- * Antispam protection for bbPress guests posts. Improvement for JetPack comments and PHP API update.
3444
-
3445
- = 2.58 2014-08-06 =
3446
- * Added anti-spam protection for signups posted via WooCommerce order form.
3447
- * Improved anti-spam protection for Contact Form 7.
3448
- * Improved anti-spam protection for registrations. Now the plugin looking for JavaScript antispam test results not only in POST array, but in COOKIES array too. This improvement allows protect signup forms for any untested signups plugins and themes.
3449
- * Updated PHP API. No the plugin can resolve sender IP for websites behind proxy servers. If the proxy servers uses private IP address.
3450
-
3451
- = 2.57 2014-07-29 =
3452
- * Improved anti-spam protection for comments. The plugin now proccessing website url in the comments form.
3453
- * Fixed sign remove logic for approved comments. Previous version doesn't cut sign for comments approved via AJAX call in WordPress backend.
3454
- * Fixed switching to SSL for comments. Previous version doesn't use secured connection for comments.
3455
-
3456
- = 2.56 2014-07-21 =
3457
- * Fixed account status check logic. Previous version makes unnecessary test API calls when the plugin asks account status check.
3458
-
3459
- = 2.55 2014-07-11 =
3460
- * Fixed bug with account status function. In backend the plugin showed notice 'Please don't forget to disable CAPTCHA if you have it on every page.
3461
-
3462
- = 2.54 2014-07-11 =
3463
- * Fixed signup anti-spam protection logic for BuddyPress registrations.
3464
- * Fixed anti-spam protection for JetPack contact form.
3465
- * Changed account status check logic.
3466
-
3467
- = 2.53 2014-06-27 =
3468
- * Fixed anit-spam protection bug for signups.
3469
- * Changed anti-spam functions (comments and signups) priority.
3470
-
3471
- = 2.52 2014-06-25 =
3472
- * Fixed 'Fatal error: Call to a member function get_error_code()' issue with signups via BuddyPress.
3473
-
3474
- = 2.51 2014-06-23 =
3475
- * Added spam protection for registrations via plugin New User Approve by Josh Harrison. If the CleanTalk matched signup as spam this signup will be denied to placing in pending queue.
3476
- * Added option "Use secure (SSL) connection to CleanTalk cloud". If the option enabled plugin will communicate with CleanTalk severs via 128bit encrypted data channel. So, if you have SSL protected webforms on website you can use this option to be sure that visitors personal data safely transmits to CleanTalk servers.
3477
- * Fixed minor bug with loading backend functions.
3478
-
3479
- = 2.49 2014-06-10 =
3480
- * Added spam protection for S2Member Auth.net forms.
3481
- * Added spam protection for multisite signup form.
3482
- * Optimized account status check function.
3483
-
3484
- = 2.46 2014-05-19 =
3485
- * Added: HTML notice about the need to enable JavaScript.
3486
- * Fixed: Fixed pingbacks anti-spam test.
3487
-
3488
- = 2.44 2014-05-12 =
3489
- * Added: Anti-spam protection for S2Member framework.
3490
- * Improved: Plugin load time for backend and frontend.
3491
- * Improved: JavaScript anti-spam test.
3492
- * Fixed: PHP warning mb_convert_encoding()
3493
-
3494
- = 2.42 2014-04-29 =
3495
- * Fixed: JavaScript anti-spam test for comments.
3496
-
3497
- = 2.38 2014-03-27 =
3498
- * Fixed: Registraion form submit time spam test.
3499
-
3500
- = 2.36 2014-03-12 =
3501
- * Reversed to patches from old revisions.
3502
-
3503
- = 2.35 2014-03-12 =
3504
- * New: Notifications about disabled account
3505
- * New: Improved JavaScript spam test.
3506
- * Fixed: Code optimization
3507
- * Fixed: JavaScript test for signups.
3508
-
3509
- = 2.33 2014-02-12 =
3510
- * Fixed: CURLOPT_FOLLOWLOCATION bug at admin notice
3511
-
3512
- = 2.32 2014-02-04 =
3513
- * New: Added notice about automatically approved comment. The notice shows only for first approved comment and only for new commentators (without approved comments) of the blog.
3514
- * New: At WordPress console added banner for notices.
3515
- * Changed: Screenshots updated.
 
 
 
 
1
+ === Spam protection, AntiSpam, FireWall by CleanTalk ===
2
+ Contributors: safronik
3
+ Tags: spam, antispam, woocommerce, comments, firewall
4
+ Requires at least: 3.0
5
+ Tested up to: 5.4
6
+ Requires PHP: 5.4
7
+ Stable tag: 5.140.1
8
+ License: GPLv2
9
+
10
+ Spam protection, anti-spam, firewall, premium plugin. No spam comments & users, no spam contact form & WooCommerce anti-spam.
11
+
12
+ == Description ==
13
+
14
+ **Supports: Contact Form 7, Contact Form by WPForms, Ninja Forms, Gravity Forms, MailChimp, Formidable forms, WooCommerce, JetPack comments and contact form, BuddyPress, bbPress, S2Member, MailPoet, wpDiscuz, any WordPress registrations & contact forms and themes. Just set up and forget the spam!**
15
+
16
+ No CAPTCHA, no questions, no animal counting, no puzzles, no math and no spam bots. Universal AntiSpam plugin.
17
+
18
+ = AntiSpam features =
19
+ 1. Stops spam comments.
20
+ 2. Stops spam registrations.
21
+ 3. Stops spam contact emails.
22
+ 4. Stops spam orders.
23
+ 5. Stops spam bookings.
24
+ 6. Stops spam subscriptions.
25
+ 7. Stops spam surveys, polls.
26
+ 8. Stops spam in widgets.
27
+ 9. Stops spam in WooCommerce.
28
+ 10. Checks and removes the existing spam comments and spam users.
29
+ 11. Compatible with mobile users and devices.
30
+ 12. Compatible with General Data Protection Regulation (GDPR) (EU).
31
+ 13. Real-time email validation. Is email real or Not.
32
+ 14. Blocking disposable & temporary emails.
33
+ 15. No Spam - No Google Penalties. Give your SEO boost.
34
+ 16. Mobile friendly Anti Spam & FireWall.
35
+ 17. Stops spam in Search Form.
36
+ 18. Disable comments.
37
+
38
+ = Public reviews =
39
+ > CleanTalk - Cloud-Based Anti-Spam Service to Keep Your Site Bot-Free.
40
+ > <a href="https://newswatchtv.com/2018/07/18/cleantalk-newswatch-review/" rarget="_blank">NewsWatch Review</a>.
41
+
42
+ > Using CleanTalk on WPLift was a great test as we receive huge amounts of spam.
43
+ > *Oliver Dale, <a href="http://wplift.com/wordpress-anti-spam-plugin" target="_blank">WPLift.com</a>.*
44
+
45
+ >I know you have heard of a number of anti-spam plugins. But you must know, the cloud-based ones are the best regarding detection rate. They compare all the content in forms with their own algorithm to find out the legibility.
46
+ >*<a href="https://www.techwibe.com/cleantalk-wordpress-plugin-review/" target="_blank">www.techwibe.com</a>*
47
+
48
+ > The key selling point of CleanTalk for me is not simply its effectiveness. It's the fact that CleanTalk works in the background. It does not make users jump through hoops in order to submit a comment or complete a form.
49
+ > <a href="https://www.kevinmuldoon.com/cleantalk-anti-spam-service/">www.kevinmuldoon.com</a>
50
+
51
+ = Free trial then $8 per year =
52
+ CleanTalk is a free anti spam plugin which work with the premium Cloud AntiSpam service cleantalk.org. This plugin as a service https://en.wikipedia.org/wiki/Software_as_a_service.
53
+
54
+ = AntiSpam protection for comments =
55
+ Native spam protection for WordPress, JetPack comments and any other comment plugins. The plugin moves spam comments to SPAM folder or you can set the option to ban spam comments silently. You can also enable the option in the plugin settings to auto-delete comments from SPAM folder.
56
+
57
+ = Spam bots registrations filter =
58
+ Filters spam bots on registration forms of WordPress, BuddyPress, bbPress, S2Member, WooCommerce, Profile builder, Login with AJAX and any other registration plugins.
59
+
60
+ = Protection from contact form spam =
61
+ The plugin is tested and ready to protect from spam emails via Formidable forms, Contact form 7, JetPack Contact form, Fast Secure Contact form, Ninja forms, Landing Page Builder, Gravity forms, Contact Form by BestWebSoft, Simple Contact Form Plugin - PirateForms, Visual Form Builder, Contact Form by WebDorado, Contact Form Email, MW WP Form, Contact Form by Jeff Bulllins, Contact Us Form, WCP Contact Form, WPForms Lite, Custom Contact, Forms, Caldera Forms, Visual Form Builder, Contact Form Clean and Simple, Divi by Elegant Themes, The7 theme and any other themes or custom contact forms, amoForms, Ultimate Form Builder, Contact Bank - Contact Forms Builder, Forms easily built with Smart Forms, Usernoise contact form, Contact Form by Web-Settler, HubSpot Marketing Free, QuForm.
62
+
63
+ = WooCommerce spam filter =
64
+ Anti-spam by CleanTalk filters spam registrations and spam reviews for WooCommerce. The plugin is fully compatible with WooCommerce 2.1 and higher.
65
+
66
+ = Newsletters antispam filter =
67
+ Anti-spam by CleanTalk filters spam subscriptions for MailPoet, MailChimp, PopupAlly and many other newsletter plugins.
68
+
69
+ = Spam filter for theme contact forms =
70
+ The plugin blocks spam emails via any theme (built-in ones included) contact forms. The plugin filters spam emails silently (without any error notices on WordPress frontend) in AJAX forms as well.
71
+
72
+ = bbPress spam filter =
73
+ Spam protection for everything about bbPress: logins, registrations, forums, topics and replies.
74
+
75
+ = Other spam filters =
76
+ * WordPress Landing Pages.
77
+ * WP User Frontend, UserPro.
78
+ * Any WordPress form (checkbox 'Custom contact forms').
79
+ * Any submission to the site (checkbox 'Check all POST data')
80
+
81
+ = Compatible with WordPress cache plugins =
82
+ * W3 Total Cache, Quick Cache, WP Fastest Cache, Hyper Cache, WP Super cache, WP-Rocket and any other cache plugins.
83
+
84
+ = Check existing comments for spam. Bulk spam comments removal. Spam comment Cleaner =
85
+ With the help of anti-spam by CleanTalk you can inspect through existing comments to find and quickly delete spam comments at once. To use this function, go to WP Console -> Comments -> Find spam comments.
86
+
87
+ = Check existing users for spam. Bulk spam accounts removal. Spam users cleaner =
88
+ With the help of anti-spam by CleanTalk you can inspect through existing accounts to find and quickly delete spam users at once. For use this function, go to WP Console -> Users -> Check for spam. Also, you can export a list of spam users to the CSV.
89
+
90
+ = Blocking users by country =
91
+ Automatically block comments and registrations from the countries you have set a ban for. This option is useful in cases of manual spam protection and for protection enhancement. If your site is not intended for international audience and you do not expect comments/users from other countries.
92
+
93
+ = Blocking comments by "stop words" =
94
+ You can block comments which contain "stop words" to enhance spam protection and messages with obscene words blocking. You can add particular words or phrases.
95
+
96
+ = Private black lists for anti-spam service =
97
+ Automatically block comments and registrations from your private black
98
+ IP/email address list. This option helps to strengthen the spam protection from a manual spam or block unwanted comments from users. You can add not only the certain IP addresses, but also a separate subnet to your personal black list.
99
+
100
+ = Private black list for Spam FireWall =
101
+ It allows you to add individual IP addresses and subnets to Spam FireWall. It
102
+ blocks the spam attacks from IP addresses which are not included in the SFW base yet. This option can help to block HTTP/HTTPS DDoS, SQL, brute force attacks and any others that made it through the HTTP/HTTPS. You can add not only the certain IP addresses, but also a separate subnet to your personal black list.
103
+
104
+ = Low false/positive rate =
105
+ This plugin uses multiple anti-spam tests to filter spam bots having as low false/positive rate as possible. Multiple anti-spam tests help to avoid false/positive blocks of the real website visitors even if one of the tests failed.
106
+
107
+ = How effective is CleanTalk? =
108
+ Accurately blocking spam is not an easy thing to do, but CleanTalk has a very low proven False/Positive rate. Here is actual statistics on false positives for all customers.
109
+
110
+ * Registrations - 0.007%
111
+ * Comments - 0.001%
112
+ * Contact forms - 0.001%
113
+ * Orders (WooCommerce) - 0.008%
114
+
115
+ The statistic was calculated on November 10 2017 for 1 million requests.
116
+
117
+ = How CleanTalk improves SEO for your website? =
118
+ So, you already know that the speed of the site has a direct impact on SEO.
119
+
120
+ *CleanTalk works faster than most of the other anti-spam plugins.* It is common knowledge that the faster your site loads, the better your customer experience is, the better your SEO will be, and the better your site will convert. Speed is becoming increasingly important in SEO, conversion and user experience. Today, site speed is one of the most important ranking factors on Google. A site that loads slowly will lose visitors and potential revenue.
121
+
122
+ There are different ways of improving your site's loading performance. One important parameter for site performance is to install well-developed plugins from a reputable source.
123
+
124
+ Among anti-spam plugins CleanTalk AntiSpam is one of the fastest. Despite the
125
+ large plugin functionality, the developers have optimized the performance of
126
+ the plugin so that AntiSpam by CleanTalk is faster than most analogs. This contributes to the cloud service architecture, as all calculations take place in the cloud, not on the server, the server receives the finished result for further action.
127
+
128
+ https://s.w.org/plugins/cleantalk-spam-protect/screenshot-5.png?r=1288723
129
+
130
+ = How CleanTalk works? =
131
+ * A visitor writes a comment or registers
132
+ * Anti-Spam by CleanTalk plugin sends action parameters into the CleanTalk cloud
133
+ * Service analyzes the parameters
134
+ * If this is a visitor, the comment will be published. If it's a spam bot, then CleanTalk blocks this comment or registration.
135
+ * Parameters are written to the spam log which can be viewed in the Control Panel service.
136
+
137
+ CleanTalk team has been developing a cloud antispam system for five years and has created a truly reliable anti-spam service designed for you to guarantee
138
+ your safety.
139
+
140
+ = Spam attacks log =
141
+ Service CleanTalk (this plugin is a client application for CleanTalk anti-spam service) records all filtered comments, registration and other spam attacks in the "Log of spam attacks" and stores the data in the log for up to 45 days. Using the log, you can ensure reliable protection of your website from spam and no false/positive filtering.
142
+
143
+ = Spam FireWall =
144
+ CleanTalk has an advanced option "Spam FireWall". Spam FireWall allows blocking the most active spam bots before they get access to your website. It prevents spam bots from loading website pages so your web server doesn't have to perform all scripts on these pages. Also it prevents scanning of pages of the website by spam bots. Therefore Spam FireWall significantly reduces the load on your web server. Spam FireWall also makes CleanTalk the two-step protection from spam bots. Spam FireWall is the first step and it blocks the most active spam bots. CleanTalk Anti-Spam is the second step and checks all other requests on the website in the moment of submitting comments/registers etc.
145
+
146
+ Spam FireWall is fully compatible with the most popular VPN services.
147
+ Also, Spam FireWall supports all search engines Google, Bing, Yahoo, Baidu, MSN, Yandex and etc.
148
+
149
+ = How Spam FireWall works? =
150
+ * The visitor enters to your web site.
151
+ * HTTP request data are being checked in the nearly 5.8 million of the identified spam bot IPs.
152
+ * If it is an active spam bot, the bot gets a blank page, if it is a visitor then he receives a normal page. This process is completely transparent for the visitors.
153
+
154
+ All the CleanTalk Spam FireWall activity is being logged in the process of filtering.
155
+
156
+ = Spam FireWall DDoS Protection =
157
+ Spam FireWall can mitigate HTTP/HTTPS DDoS attacks. When an intruder makes GET requests to attack your website, Spam FireWall blocks all requests from bad IP addresses. Your website gives the intruder a special page with the description of DDoS rejection instead of the website pages. Therefore Spam FireWall helps to reduce CPU usage of your server.
158
+ [youtube https://www.youtube.com/watch?v=Eu5Zqryvj4k]
159
+
160
+ = XML-RPC brute force protection =
161
+ Spam FireWall can mitigate XML-RPC brute force attacks. It blocks XML-RPC attacks from bad IP addresses. This helps to prevent bruteforce attacks by a Remote Procedure Call.
162
+
163
+ = No spam comments, no spam registrations, no spam contact emails, no spam trackbacks. CAPTCHA-free anti-spam for WordPress =
164
+ Spam is one of the most irritating things. Spam rates are increasing every year and conventional anti-spam can no longer handle all spam bots. CleanTalk prevents and automatically blocks spam. You'll be surprised how effective CleanTalk is in protecting from spam.
165
+
166
+ = AntiSpam plugin info =
167
+ CleanTalk is an all-in-one antispam solution for WordPress that protects login, comment, contact and WooCommerce forms at once. You don't need to install separate antispam plugins for each form. It allows your blog to work faster and save resources. After installation you will forget about spam; your CleanTalk plugin will do all the work. You won't have to deal with spam as CleanTalk does this for you automatically.
168
+
169
+ CleanTalk is a transparent antispam tool, we provide detailed stats of all incoming comments and logins. You can always be sure that **there are no errors**. We have developed a mobile app for you to see antispam stats wherever you want.
170
+
171
+ We have developed the antispam for WordPress that protects you from spam bots at the maximum level allowing you to provide your visitors a simple and convenient form of comments/registrations without annoying CAPTCHAs and puzzles. CleanTalk detects spam in multistage tests allowing us to block up to 99.998% of spam bots.
172
+ The anti-spam method offered by CleanTalk avoids inconvenient for communication methods (CAPTCHA, question-answer etc.), and offers to your site visitors a more comfortable one.
173
+
174
+ CleanTalk is a premium anti-spam service for WordPress, the plugin works with
175
+ our own CleanTalk Cloud Service. Anti Spam by CleanTalk offers a free trial, you can look at the <a href="https://cleantalk.org/price">pricing</a> here. We provide anti-spam services at the highest level. To maintain this level we cannot afford to offer a free version of our service, as this will immediately affect the quality of the providing anti-spam protection. Paying for a year of anti-spam service, you save a lot more and receive:
176
+
177
+ * Up to 99.998% protection from spam bots.
178
+ * Time and resources saving.
179
+ * More registrations/comments/visitors.
180
+ * Spam protection of the several websites at once in different CMS.
181
+ * Ease in installation and using.
182
+ * Traffic increase and loyalty to the users.
183
+ * 24/7 technical support.
184
+ * Clear stats.
185
+ * Spam FireWall.
186
+ * No captcha (reCaptcha), puzzles, etc.
187
+ * Free mobile app to control anti-spam protection on your website.
188
+
189
+ = Additional features =
190
+ * Daily and weekly detailed anti-spam reports: traffic VS spam.
191
+ * Apps for iPhone, Android to control anti-spam service, comments, signups, contacts, traffic and spam stats for the last 7 days.
192
+ * AntiSpam apps for most popular CMS on cleantalk.org.
193
+
194
+ = How to protect sites from spam bots without CAPTCHA? =
195
+ The most popular anti spam method is CAPTCHA - the annoying picture with curved and sloping symbols, which are presented to the visitor to decipher and fill in. In is supposed that spam bots won't discern these CAPTCHA, but a visitor will. CAPTCHA provokes great irritation, but if the visitor wants to comment, he has to fill in these symbols time after time, making mistakes and starting once again. Sometimes CAPTCHA reminds us of the doodles of a two year old child. For users with vision problems CAPTCHA is an insurmountable obstacle. Users hate captcha. Captcha for users means "hate". Unreadable CAPTCHA stops about 80% of site visitors. After 2 failed attempts to decipher CAPTCHA 95% of visitors reject further attempts. At the sight of CAPTCHA and after input errors, many visitors leave the resource. Thus, CAPTCHA helps to protect the resource spam both from bots and visitors. CAPTCHA is not a panacea from spam. Doubts concerning the Need for CAPTCHA?
196
+
197
+ *"Ultimately, CAPTCHAs are useless for spam because they're designed to tell you if someone is 'human' or not, but not whether something is spam or not." Matt Mullenweg*
198
+
199
+ You do not have to work in IT to know what spam is. Besides piles of unwanted email, there are spam bots, or special software programs designed to act as human website visitors that post unwelcome messages over the Internet to advertise dubious services. More often than not spam messages do not even make sense. Similar to bacteria and virus mutations developing antibiotic resistance, spam bots are becoming more resilient in penetrating Internet firewalls and security layers.
200
+
201
+ = CleanTalk's features =
202
+ Anti-Spam by CleanTalk with Spam FireWall is one of the fastest plugins that allows you to lower the server load. One of the important parameters for each webmaster is the speed of the site, so we make sure that our plugin consumes as few server resources as possible. The Cloud Service provides the advantage: all data processing takes place in the Cloud.
203
+
204
+ CleanTalk team has developed unique anti spam algorithms to assess visitors behavior. CleanTalk analyzes user behavior and the parameters of the filled forms. Our anti-spam module, being installed in your website, sends the behavior parameters of either a visitor or a spam bot. When these parameters are estimated, the anti spam service makes a decision - to post a message or to define it as spam and reject it. Based on these checks, the service forms its own list of email addresses used by spam bots.
205
+
206
+ The registrations of visitors are being checked in a similar manner. The service adds to the blacklist not just email addresses, but also IP addresses and domains of websites that promote themselves through spam mailing. All of this happens automatically and requires no action from the administration of the website. In 2.5 million queries the service makes a mistake in 40-45 cases, i.e. CleanTalk detects spam with 99.9982% accuracy. We constantly monitor these errors and make adjustments to our algorithms. Even with this exceptional accuracy our team is aiming to improve the figures over time.
207
+
208
+ All-in-one. CleanTalk protects form spam all forms instantaneously - comments, registrations, feedback, contacts. No need to install additional plugins for each form. You save resources and increase performance of your website.
209
+
210
+ Spam attacks log. Anti-Spam by CleanTalk records all filtered comments, registrations and other spam attacks in the "Log of spam attacks" and stores the data in the log for up to 45 days. Using the log, you can ensure reliable protection of your website from spam and experience no false/positive filtering.
211
+
212
+ With the help of anti-spam by CleanTalk you can check existing comments and users, to find and quickly delete spam comments at once. This allows administrators of websites to automatically check and identify spam bots, comments and users, which were not detected by conventional anti-spam tools. The existing comments and users checking process is performed in a database of the nearly 2 million identified spam bots. Detailed spam stats allows CleanTalk customers to fully control it.
213
+
214
+ CleanTalk has an advanced option "Spam FireWall". This option allows you to block the most active spam bots before they get access to your website. It unloads you website pages when an attempt attack was made, so your web server won't run unnecessary scripts on these pages. Also it prevents any scanning of website pages by spam bots. Subsequently Spam FireWall significantly reduces your webserver load. Spam FireWall can mitigate HTTP/HTTPS DDoS attacks. When an intruder makes GET requests to attack your website, Spam FireWall will block requests from bad IP addresses. Your website gives the intruder a special page with a description of DDoS rejection instead of the website pages. Spam FireWall can help to reduce the CPU usage of your server because of this reason.
215
+
216
+ "CleanTalk team has been developing a cloud spam protection system for five years and has created a truly reliable anti-spam service designed for you to guarantee your safety".
217
+
218
+ = White Label Mode =
219
+
220
+ To switch the plugin work in the white-label mode you should set up a few settings on your main site in Wordpress Multisite Network:
221
+
222
+ 1. Check setting "Enable White Label Mode".
223
+ 2. Fill "Hoster API Key" field with key from CleanTalk's hoster panel.
224
+ 3. Fill "Plugin name" field. It could be any name you want for the plugin.
225
+ 4. Save settings.
226
+
227
+ The plugin will do everything rest.
228
+
229
+ = Auto-Update CleanTalk AntiSpam =
230
+
231
+ CleanTalk Dashboard allows you to set auto-update plugin and select several websites and update the plugin at once on all sites by one click or you can setup auto-update for all websites or separate websites.
232
+
233
+ Note: there is 24 hours delay before auto-update will do. This delay allows needing to avoid any issues. All updates that made through CleanTalk Dashboard manually will do immediately.
234
+
235
+ Auto-updating system will work from CleanTalk AntiSpam version 5.88
236
+
237
+ = Real-time email validation. Is email real or Not. =
238
+ It is very important to be sure that the user used his real email address. Spambots very often use fake email addresses, i.e. which addresses do not exist.
239
+
240
+ CleanTalk will check email addresses for existence in real time.
241
+
242
+ Non-existing email addresses also entail several other problems for website owners.
243
+
244
+ * You can never contact them by email,
245
+ * the client will never receive any notifications from you (account activation letter, password recovery, email distribution, notifications, etc.),
246
+ * if you use email marketing for your clients, then a large number of nonexistent emails in the mailing list may result in your IP address being added to various blacklists of email servers.
247
+
248
+ Improve your email list with email validation without fake emails.
249
+
250
+ = Blocking disposable & temporary emails =
251
+
252
+ Block fake and suspicious users with disposable & temporary emails to improve email delivery. So, it also prevents malicious activity, spam bots, and internet trolls.
253
+
254
+ = Stops Spam in Search Form =
255
+
256
+ Spam bots can use your search form to make a GET request with spam text.
257
+ CleanTalk Anti-Spam has the option to protect your website search form from spam bots. Each time, the search generates a new page and if there are many requests, this can create additional load. So, under some conditions, spam searches can be indexed, which affects SEO,
258
+
259
+ * Spam FireWall blocks access to all website pages for the most active spambots. It lowers your web server load and traffic just by doing this.
260
+ * Anti-Spam protection for website search forms repels spambots.
261
+ * If your search form gets data too often the CleanTalk Anti-Spam plugin will add a pause and increase it with each new attempt to send data. It saves your web server processor time.
262
+ * Spam protection allows you to not forbid indexation for the crawler bots if you really need it but simultaneously you will get protection from spambots.
263
+
264
+ You will always know what users were looking for on your site.
265
+
266
+ = Disable comments =
267
+
268
+ This option disables comments on your site. You can choose one or several options:
269
+
270
+ * Disable comments for posts
271
+ * Disable comments for pages
272
+ * Disable comments for media
273
+
274
+ When using Disables comments, existing comments will not be deleted and will remain on the pages.
275
+
276
+ = Translations =
277
+ * Albanian (sq_AL) - thanks to fjalaime https://wordpress.org/support/users/fjalaime/
278
+ * French (fr_FR) - thanks to Gilles Santacreu http://net-ik.net
279
+ * Spanish (es_ES) - thanks to Andrew Kurtis and WebHostingHub
280
+
281
+ = Requirements =
282
+ WordPress 3.0 at least. PHP 5 with CURL or file_get_contents() function and enabled 'allow_url_fopen' setting. The plugin is fully compatible with PHP 7.
283
+
284
+ > Max power, all-in-one, premium anti-spam WordPress plugin. No comments & registrations spam, no contact spam, protects any forms. Just install and forget spam.
285
+
286
+ == Installation ==
287
+
288
+ = Installation instructions =
289
+
290
+ 1. Download, install and activate 'Anti-spam by CleanTalk'.
291
+
292
+ 2. Get Access key <a href="https://cleantalk.org/register?platform=wordpress" target="_blank">https://cleantalk.org/register</a>
293
+
294
+ 3. Enter Access key in the settings: WordPress console -> Settings -> Antispam by CleanTalk
295
+
296
+ 4. Do dummy spam comment (registration or contact message) with email **stop_email@example.com**. You should see notice: **Forbidden. Sender blacklisted.**
297
+
298
+ 5. Done! The plugin is ready to use.
299
+
300
+ = Video guide - Anti-Spam Plugin Installation in WordPress. =
301
+
302
+ [youtube https://www.youtube.com/watch?v=SktF0s-go6A ]
303
+
304
+ **Important!** To test spam protection you must post a dummy submissions as website visitor (use must logged out from WordPress console), because the plugin doesn't filter submissions from WordPress administrators.
305
+
306
+ = How can setup plugin in WPMU version? =
307
+ In WordPress multisite version you can switch the plugin to use Global Access key. In this way the plugin doesn't show any options to enter Access key in plugin settings and doesn't show Trial banner in WordPress backend. To setup global CleanTalk access key for all websites in WPMS, define constant in your wp-config.php file before defining database constants:
308
+
309
+ define('CLEANTALK_ACCESS_KEY', 'place your key here');
310
+
311
+ **Make it before you activated the plugin. If the plugin already activated, deactivate it and add the code and active it again.**
312
+ Now, all subsites will have this access key.
313
+
314
+ = Manage and control spam protection =
315
+
316
+ Go to <a href="https://cleantalk.org/my" target="_blank">Dashboard</a> at the cleantalk.org or use <a href="https://play.google.com/store/apps/details?id=org.cleantalk.app">Android</a>, <a href="https://itunes.apple.com/us/app/cleantalk/id825479913?mt=8">iPhone</a> anti-spam app to manage and control spam protection.
317
+
318
+
319
+ == Frequently Asked Questions ==
320
+
321
+ = Why are they spamming me? =
322
+ Spammers want to get backlinks from your site to improve their site's PageRank or redirect your visitors to malicious sites.This level of spam can damage your reputation with readers and commentators if you fail to tackle it. It is not uncommon for some WordPress websites to receive hundreds or even thousands of comments every week. However, by using a CleanTalk plugin, spam can be easily handled by your WordPress website.
323
+
324
+ = Is the anti-spam protection safe for mobile visitors? =
325
+ Yes, it is. The plugin doesn't block mobile visitors as well as desktop website visitors. It uses several independent anti-spam tests to decrease the number of false outcomes and to have as low false-positive rate as possible. Multiple anti-spam tests help to avoid false/positive blocks for real website visitors even if one of the tests failed.
326
+
327
+ = What does the plugin do with spam comments? =
328
+ Spam comments are being moved to SPAM folder by default or you can set the option to ban spam comments silently.
329
+
330
+ = How can I test the anti-spam protection? =
331
+ Please use the email **stop_email@example.com** for comments, contacts or signups to see how the anti-spam protection works. Also you can see the logs for the last 7 days at the <a href="http://cleantalk.org/my/show_requests">Control panel</a> or look at the folder "Spam" for banned comments.
332
+
333
+ = Is the plugin effective against spam bots? =
334
+ The plugin Anti-Spam by CleanTalk stops up to 99.998% of spam comments, spam signups (registrations), spam contact emails, spam subscriptions, spam bookings or spam orders.
335
+
336
+ = Does the plugin protect from brute force, DoS attacks and spam attacks? =
337
+ Yes, it does. Please turn the option 'Spam FireWall' on in the plugin settings to protect your website from DoS/DDoS, XML-RPC attacks.
338
+
339
+ = How does the plugin stop spam? =
340
+ Please, note - administrator's actions are NOT being checked.
341
+
342
+ The plugin uses several simple tests to stop spammers:
343
+
344
+ 1. **JavaScript anti-spam test.** 99% of spam bots don't have full JavaScript functions support. So, the plugin has the code which can be run by normal visitor and can't be run by the spam bot.
345
+ 1. **Email, IP, domain spam activity list entries check.** The plugin uses spam activity database online at cleantalk.org, consisting of more than 20 billion spam activity records of IPs, Emails, Domains and ASN. If the sender's IP or Email is in the database, the sender gets some spam scores. To reduce false/positive rate the plugin not only uses the blacklist test to ban spammers, the sender will be banned when and only when multiple spam tests have been failed.
346
+ 1. **Comment submit time.** Spam bots usually submit the info immediately after the page has been loaded, this happens because spam bots don't actually fill the web form, they just send $_POST data to the blog. The normal visitor sends the data after several seconds or minutes.
347
+
348
+ = Will the anti-spam plugin protect my theme? =
349
+ Yes, it will. The Anti-spam by CleanTalk is compatible with any WordPress theme.
350
+
351
+ = What about pingback, trackback spam? =
352
+ The plugin passes pingbacks without any checks by default. All trackbacks will be blocked if the sender had spam activity.
353
+
354
+ = Can I use CleanTalk with Akismet? =
355
+ Sure, you can use CleanTalk with Akismet. In this case you will probably have higher false/positive rate (when legitimate comments/signups are being denied), but you will have stronger anti-spam protection on your website.
356
+
357
+ = Is CleanTalk better than Akismet? =
358
+ Please look at this features comparison here https://cleantalk.org/cleantalk-vs-akismet
359
+
360
+ = Can I use CleanTalk to remove pending spam comments? =
361
+ Yes, you can. The plugin has the option to test all pending comments via database of <a href="https://cleantalk.org/blacklists">spam active IP/Email</a>, found spam comments will be moved to Trash folder.
362
+
363
+ = How does the plugin find spam in pending comments or registered accounts? =
364
+ The plugin checks all non-spam comments in the blacklist database and shows you those senders who have spam activity on other websites.
365
+ There are some differences between blacklist database and API to protect you from spam bot registrations/comments online. Blacklists show all history of spam activity, but our API (which is used in spam tests) relies on other parameters too: last day of activity, number of spam attacks during the last days etc. These mechanisms help us to reduce the number of false outcomes. So, there is nothing strange, if some emails/IPs are not found by bulk comments/accounts test.
366
+
367
+ To check comments please go here:
368
+ > WordPress console -> Comments -> Find spam comments
369
+
370
+ To check users please go here:
371
+ > WordPress console -> Users -> Find spam users
372
+
373
+ = Should I use other anti-spam tools (Captcha, reCaptcha and etc.)? =
374
+ CleanTalk stops up to 99.998% of spam bots, so you can disable other anti-spam plugins (especially CAPTCHA-type anti-spam plugins). In some cases several anti-spam plugins could conflict with each other, so it would be better to use just one plugin.
375
+
376
+ = Is the plugin compatible with WordPress MultiUser (WPMU or WordPress network)? =
377
+ Yes, the plugin is compatible with WordPress MultiUser. Each blog in multisite environment has individual anti-spam options for the protection from spam bots.
378
+
379
+ = After the installation I noticed that the number of spam attacks has been increased in the stats =
380
+ There are a few reasons for this:
381
+
382
+ * With the indexing of your web-site by the search systems, appearance of external links and better search results position, your web-site attracts more and more spambots.
383
+ * Non-transparent protection systems like CAPTCHA or question/answer, that don't have spam attacks stats, don't let you see the whole picture, or the picture is incomplete.
384
+ * Counting methods for spam attacks and spam bots are different for different systems, thus the diversity appears. We seek to provide detailed stats.
385
+
386
+ = Why my dummy "spam" comment passed to the WordPress? =
387
+ The plugin has several options to detect spam bots and humans. If you just post spammy text like this:
388
+
389
+ "I want to sell something", "Buy something here.." and etc
390
+
391
+ the comments will be passed, because the plugin detects sender as a human. So, use special email *stop_email@example.com* to test the anti-spam functionality or wait a few days to see how the plugin works.
392
+
393
+ = Is it free or paid? =
394
+ The plugin is free and distributed under the GPLv2 license.
395
+
396
+ CleanTalk anti-spam plugin works with a cloud base anti-spam service and this plugin is a Software as a service (SaaS).
397
+ CleanTalk it’s a free plugin that works with premium Cloud Anti-Spam service.
398
+ https://en.wikipedia.org/wiki/Software_as_a_service
399
+
400
+ The fact that the plugin works with a premium type service is mentioned in the plugin annotation and in its WordPress catalog description.
401
+
402
+ We are ready to help you with any issue regarding CleanTalk. There are hundreds of environment compositions and we do our best to cover as many as possible.
403
+
404
+ = Can I use CleanTalk with cache plugins? =
405
+ Anti-spam by CleanTalk doesn't use static HTML code in its templates, so all anti-spam functions work correctly with any WordPress cache plugins.
406
+
407
+ = Does the plugin protect from spam bots if I use forms with third-party services? =
408
+ Yes, it does. Plugin protects web-forms on your websites which send data to third-party servers (like MailChimp). To enable this protection set the option 'Protect external forms' in the plugin settings.
409
+
410
+ = Does CleanTalk compatible with Cloudflare? =
411
+ CleanTalk is fully compatible with CloudFlare. Service doesn't filter CloudFlares IP's (AS13335) through blacklists database, so in this case plugin/service filters spam bots using other anti-spam tests.
412
+
413
+ = Is CleanTalk compatible with a content delivery network (CDN)? =
414
+ Yes, it is. CleanTalk works with any CDN system, i.e. CloudFlare, MaxCDN, Akamai.
415
+
416
+ = Can I use CleanTalk functionality in my plugins? =
417
+ Yes, you can. Just use following snippet:
418
+
419
+ <?php
420
+ if(!function_exists('ct_test_message')){
421
+ include_once( ABSPATH . '/wp-content/plugins/cleantalk-spam-protect/cleantalk.php' );
422
+ }
423
+ //for registration test:
424
+ $res=ct_test_registration("nickname", "stop_email@example.com", "127.0.0.1");
425
+ //or for some other messages (contact forms, comments etc.)
426
+ $res=ct_test_message("nickname", "stop_email@example.com", "127.0.0.1", "test message");
427
+
428
+
429
+ $res now contents array with two parameters:
430
+ * $res['allow'] - is request allowed (1) or not (0)
431
+ * $res['comment'] - comment for our server's decision.
432
+
433
+ = I see two loads of script cleantalk_nocache.js. Why do you use it twice? =
434
+ This script is used for AJAX JavaScript checking. Different themes use different mechanisms of loading, so we use two methods for loading our script. If you absolutely know what you are doing, you can switch one of the methods off by defining constants in your wp-config.php file:
435
+
436
+ define('CLEANTALK_AJAX_USE_BUFFER', false); //false - don't use output buffering to include AJAX script, true - use it
437
+
438
+ or
439
+
440
+ define('CLEANTALK_AJAX_USE_FOOTER_HEADER', false); //false - don't use wp_footer() and wp_header() for including AJAX script, true - use it
441
+
442
+ = Can I add exclusions for some pages of my site? =
443
+ Yes, you can. There is a special setting in plugin settings.
444
+ You could use this guide to learn more: https://cleantalk.org/help/exclusion-from-anti-spam-checking#wordpress
445
+
446
+ = Can I not send my personal data to CleanTalk servers? =
447
+ Yes, you can exclude your data. There is a special setting in plugin settings.
448
+ You could use this guide to learn more: https://cleantalk.org/help/exclusion-from-anti-spam-checking#WordPress_field_exclusions
449
+
450
+ = How to test Spam FireWall? =
451
+ Use special IP 10.10.10.10 in URL to test Spam FireWall. For example,
452
+
453
+ https://cleantalk.org/blog/?sfw_test_ip=10.10.10.10
454
+
455
+ Attention! The incognito mode should be enabled in your browser when you do a test. To enable incognito mode press Ctrl+Shift+N for Chrome, Opera и Safari browsers; press Ctrl+Shift+P for Firefox, Internet Explorer and Microsoft Edge. A full guide to enable Incognito mode is here: https://www.wikihow.com/Activate-Incognito-Mode
456
+
457
+ = How can I enter access key in WPMU version? =
458
+ To set up global CleanTalk access key for all websites in WPMU, define constant in your wp-config.php file before defining database constants:
459
+
460
+ define('CLEANTALK_ACCESS_KEY', 'place your key here');
461
+
462
+ Now, all subsites will have this access key.
463
+
464
+ = Why is CleanTalk faster and more reliable than stand-alone solutions? =
465
+ All anti-spam checks are held in the cloud and don't overload the web server. The cloud solutions have a huge advantage since the parameters are being compared with information from more than 100,000 websites.
466
+
467
+ = I see a lot of blocked messages with the reason "Forbidden. Please enable JavaScript. Spam sender name." in my logs =
468
+ A lot of spam bots can't perform JavaScript code, so it is one of the important checks and most of the spam bots will be blocked with the reason **"Forbidden. Please enable JavaScript. Spam sender name."** All browsers can perform JS code, so real visitors won't be blocked.
469
+
470
+ If you or some of your visitors have the error **"Forbidden. Enable JavaScript."** please check JavaScript support in your browser and do this JavaScript test at this page: https://cleantalk.org/checkout-javascript-support.
471
+
472
+ If you think that there is something wrong in the messages blocking, let us know about it. Please submit a support request here: https://cleantalk.org/my/support.
473
+
474
+ = Does the plugin work with Varnish? =
475
+ CleanTalk works with Varnish, it protects WordPress against spam, but by default the plugin generates a few cookies for the protection from spam bots and it also disables Varnish cache on pages where CleanTalk's cookies have been stored. To get rid of the issue with cache turn off the option 'Set cookies' in the plugin settings.
476
+
477
+ WordPress console -> Settings -> CleanTalk -> Advanced settings
478
+
479
+ Now the plugin will protect WordPress comments, registrations and most of popular contact forms, but will not protect some of rarely used contact forms.
480
+
481
+ = Does the anti-spam plugin work with Accelerated Mobile Pages (AMP)? =
482
+ Yes, it does. But you have to turn off the option 'Use AJAX for JavaScript check' in Advanced settigns of the plugin to be fully compatible with Accelerated Mobile Pages.
483
+
484
+ = How to close renewal or trial notice in the WordPress backend? =
485
+ To close the notice please save the plugin settings again or it will be closed automatically within 60 minutes after the renewal.
486
+
487
+ = I'm using PHP 4.2 version and i'm getting errors related with JSON. Why does it happens? =
488
+ СleanTalk is no longer supports PHP lower than 5.2 version because the support code have incompatibility with PHP 7 version. Please, upgrade your PHP. If you couldn't perform that, let us know about it via support ticket here: https://cleantalk.org/my/support.
489
+
490
+ = Should I change anything in the plugin's settings or in my CleanTalk Control Panel when I switch my website from HTTP to HTTPS or vice versa? =
491
+ No. You don't need to change anything in the plugin's settings or in your CleanTalk Control Panel. The plugin will work regardless of the protocol.
492
+
493
+ = How to use Anti-Spam Log? =
494
+ The following possibilities are available for you in the Anti-Spam Log:
495
+
496
+ - Time period for all spam records you want to see.
497
+
498
+ - Filter spam records by their status: Any status, Denied, Approved.
499
+
500
+ - Filter spam records by your websites.
501
+
502
+ - Filter spam records by country they came from.
503
+
504
+ - Filter spam records by IP address, e-mail address or username.
505
+
506
+ - Available options for a specific record:
507
+
508
+ * Details - see item 4 below.
509
+ * Spam/Not Spam - press this string if our system made wrong decision and blocked or approved a registration, a comment ot a contact form submission. More about it here: https://cleantalk.org/faq#feedback_spam
510
+ * Delete - delete a record permanently.
511
+ * Personal blacklists - go to your website Black&White Lists page.
512
+ * Record details: block reason, body of the message, additional caught data.
513
+
514
+ = Spam FireWall and AntiSpam - Networks Blocking =
515
+
516
+ Anti-Spam - will blocks users from selected IP or network from using contacts/messages/registrations/comments forms.
517
+ Spam FireWall - will blocks users from selected IP or network from entering the website.
518
+
519
+ Please, read more here
520
+ https://cleantalk.org/help/sfw-blocks-networks
521
+
522
+
523
+ = Spam Comment Management =
524
+
525
+ By default, all spam comments are placed in the spam folder, now you can change the way the plugin deals with spam comments:
526
+
527
+ 1. **Move to the Spam folder.** All spam comments will be placed to the folder "Spam" in the WordPress Comments section except comments with Stop-Words. Stop-Word comments will be always stored in the "Pending" folder.
528
+
529
+ You can prevent the proliferation of Spam folder. It can be cleaned automatically using the option "Keep spam comments for 15 days." Enable this option in the settings of the plugin: WordPress Admin Page -> Settings -> Antispam by CleanTalk -> Advanced settings -> enable "Keep spam comments for 15 days" -> Save Changes.
530
+
531
+ 2. **Move to Trash.** All spam comments will be placed to the folder "Trash" in the WordPress Comments section except comments with Stop-Words. Stop-Word comments will be always stored in the "Pending" folder.
532
+
533
+ 3. **Ban comments without moving to WordPress backend.** All spam comments will be deleted permanently without going to the WordPress backend except comments with Stop-Words. Stop-Word comments will be always stored in the "Pending" folder.
534
+
535
+ What comments were blocked and banned can be seen in the Anti-Spam Log here: https://cleantalk.org/my/show_requests?int=week
536
+
537
+ To manage the actions with spam comments, go to the Control Panel, select the website you want to change the actions for and go to "Settings" under the name of the website.
538
+
539
+ Please, read more here:
540
+ https://cleantalk.org/help/spam-comment-management
541
+
542
+ = How do I report a missed spam bot or incorrect filter? =
543
+
544
+ If you think the service has missed a spam bot or improperly filtered visitor to the website, you may notify us via the Anti-spam control panel. To do this,
545
+ Log in to Control panel https://cleantalk.org/my.
546
+ Click the line "Log" under the name of your website.
547
+ When you mark a record as "SPAM", its e-mail and IP-address will be added to your personal blacklist for your website.
548
+ When you mark a record as "Not SPAM", its e-mail and IP-address will be added to your personal white list for your website.
549
+
550
+ Please, read more here
551
+ https://cleantalk.org/faq#feedback_spam
552
+
553
+ = Is the plugin fast? =
554
+ We develop plugin to do it as optimized as possible, CleanTalk doesn't downgrade response time in backend or frontend. The plugin proccess only POST requests to WordPress core, it tackes less than 1 second to return results.
555
+
556
+ = Is the plugin EU GDPR compatible? =
557
+ Yes, it is. Please read this article,
558
+ <a href="https://cleantalk.org/publicoffer#cleantalk_gdpr_compliance">https://cleantalk.org/publicoffer#cleantalk_gdpr_compliance</a>
559
+
560
+ = Check external forms =
561
+ If your website has forms that send data to external sources, you can enable option to "Protect external forms". In this case, if plugin determinates that the current message is spam, your form action will be temporary replaced to your current hostname to prevent sending false data to an external source.
562
+
563
+ == Screenshots ==
564
+ 1. AntiSpam settings are easy to use.
565
+ 2. AntiSpam plugin rejected a spam bot at the CAPTCHA less registration form. The plugin provides explanation to visitor and websites about each rejected comment/registration or contact message.
566
+ 3. Use AntiSpam analytics tool for each website in service Dashboard to have information about spam/legitimate stats.
567
+ 4. Use AntiSpam log to control anti-spam plugin.
568
+ 5. CleanTalk works faster than most of other anti-spam plugins.
569
+ 6. The Dashboard with a map of most spam active countries per your account.
570
+ 7. The plugin deletes/removes the existing spam comments and users accounts.
571
+ 8. CleanTalk's dashboard update link.
572
+ 9. Auto upadte confimation.
573
+ 10. Website's options.
574
+
575
+ == Changelog ==
576
+
577
+ = 5.140.1 Jun 25 2020 =
578
+ * Upd: .POT updated.
579
+ * Upd: RU .po updated.
580
+
581
+ = 5.140 Jun 18 2020 =
582
+ * New: Add SFW status in plugin settings.
583
+ * Fix: Remove sleep for sfw update.
584
+ * Fix: Check account status only once in 86400 seconds.
585
+ * Fix: Postmark avocet theme.
586
+ * Fix: Find spam users - from-till implemented.
587
+ * Upd: Add common.js.
588
+ * Fix: Bookly admin action excluded.
589
+ * Fix: sfw_pass_key cookie domain attribute removed.
590
+ * Fix: SFW no cache meta tags added.
591
+ * Fix: MEC Pro plugin compatibility fixed.
592
+ * Mod: Catching SpamFireWall update errors.
593
+ * Fix: UltimateBuilder skip fields.
594
+ * Fix: Strip tags on comment.
595
+
596
+ = 5.139 Jun 02 2020 =
597
+ * Fix: Profile link fixed.
598
+ * Fix: WPMS plugin name fixed.
599
+ * Fix: WPMS plugin settings link fixed.
600
+ * Fix: Integration with Easy Forms for Mailchimp.
601
+ * Fix: JS check on the registration form.
602
+ * Fix: Double JS attaching on the login page.
603
+ * Fix: Clear SpamFireWall table. Throw error if failed.
604
+ * Upd: Cookies attr "samesite" added.
605
+ * New: Users checking result icons added.
606
+ * Upd: Whitelists support added for SFW.
607
+ * Fix: Clear users meta everywhere by complete deactivation.
608
+ * New: Comment notification updated - blacklist links added.
609
+ * Fix: PHP Warning in cleantalk-pluggable.php.
610
+ * Fix: White Label mode is not accessible if CLEANTALK_ACCESS_KEY is defined.
611
+ * Fix: Deprecated condition.
612
+ * Fix: Setting layout for the right to left direction languages.
613
+
614
+ = 5.138.1 May 20 2020 =
615
+ * Fix: Ninja Forms. Spam submissions.
616
+
617
+ = 5.138 May 14 2020 =
618
+ * Fix: Scan users fixed.
619
+ * Fix: Notice fixed (Creating default object from empty value).
620
+ * Fix: Creating table for SFW data for child blogs on WPMS.
621
+ * Upd: SFW query optimized.
622
+ * Fix: Adding cleantalk_spamscan_logs table for each blog when updating from 5.137.2.
623
+ * New: White Lists for SFW implemented.
624
+ * Fix: correct comments checking status text.
625
+ * Fix: Users scan. Reducing memory load.
626
+ * Fix: "Capture Buffer" settings. The issue with YoastSEO.
627
+ * Fix: SFW query fixed.
628
+ * Fix: SFW die page fixed.
629
+ * Fix: Membermouse API false positives.
630
+ * Fix: gz*() functions calling from global namespace for now.
631
+
632
+ = 5.137.1 April 29 2020 =
633
+ * Fix: Call to undefined function wp_get_current_user().
634
+ * Fix: "Capture buffer" setting, YOAST sitemap.
635
+ * Integration: Simple Membership plugin integration implemented.
636
+ * Fix: Integrations system fixed.
637
+ * Fix: Query for SFW fixed.
638
+ * Fix: SFW error handling.
639
+
640
+ = 5.137 April 23 2020 =
641
+ * Fix: WPMU and WhiteLabel mode fixed.
642
+ * Fix: 403 Response code for blocked entries.
643
+ * Upd: SFW die page updated (spinner and delay).
644
+ * New: SFW query updated.
645
+ * Fix: SFW truncate instead of delete.
646
+ * Fix: AJAX exception for WordPress Membership Plugin – Restrict Content.
647
+ * Fix: Check spam users.
648
+ * Fix: Debug functionality for users check.
649
+ * Fix: Gravity Forms. Modifying message.
650
+ * Fix: Sanitizing settings.
651
+ * Fix: "Delete all spam users" button.
652
+
653
+ = 5.136.4 April 8 2020 =
654
+ * Security: Possible XSS vulnerability.
655
+
656
+ = 5.136.3 April 7 2020 =
657
+ * Security: Possible XSS vulnerability.
658
+
659
+ = 5.136.2 April 7 2020 =
660
+ * Mod: bbPress is using role exclusions now.
661
+ * Mod: Show info on SpamFirewall block page.
662
+ * Mod: Log SpamFirewall tests.
663
+ * Fix: get_fields_any() fixed.
664
+ * Fix: Multiple requests on WooCommerce checkout.
665
+ * Fix: The SpamFirewall block page.
666
+
667
+ = 5.136.1 April 2 2020 =
668
+ * Mod: Setting "Show links to check Emails, IPs for spam" splitted in two.
669
+ * Mod: Added setting "Manage comments on public pages".
670
+ * Fix: Feedback from public pages.
671
+ * Fix: Output for setting "Manage comments on public pages".
672
+ * Fix: Public widget errors.
673
+
674
+ = 5.136 April 1 2020 =
675
+ * New: Feature allowing to track missed spam requests with the special plugin.
676
+ * Mod: Enable WooCommerce checkout test by default.
677
+ * Fix: Fluent forms integration fixed.
678
+ * Fix: Logging skipped requests - actions added.
679
+ * Fix: Comments output.
680
+ * Fix: External forms protection.
681
+ * Fix: PHP 7.4 compatibility.
682
+ * Performance improved.
683
+
684
+ = 5.135 March 16 2020 =
685
+ * New: Setting which disallow sub-sites administrators to manage plugin settings.
686
+ * New: Add custom title for message.
687
+ * Mod: New headers for spam scan tabs.
688
+ * Fix: ARM form login check.
689
+ * Fix: For GET requests in HTTP API.
690
+ * Fix: Getting variables in Get and Server classes.
691
+ * Fix: SFW update system.
692
+ * Fix: Empty connection error in Cleantalk/Antispam/API.
693
+
694
+ = 5.134 February 27 2020 =
695
+ * Fix: SpamFireWall update large data issues.
696
+ * Fix: Auto-update for some banner notifications.
697
+ * Fix: QuickContactForm protection.
698
+ * Minor fixes.
699
+ * Spam protection improved.
700
+
701
+ = 5.133.2 February 10 2020 =
702
+ * Fix: Add no-index meta tag to search page only.
703
+ * Fix: Namespace issues.
704
+
705
+ = 5.133.1 February 03 2020 =
706
+ * Fix: PHP 7.4 issues.
707
+ * Fix: Woocommerce options moved to a separate block.
708
+ * Fix: CSS/HTML issues on settings page.
709
+ * Minor fixes.
710
+ * Spam protection improved.
711
+
712
+ = 5.133 January 20 2020 =
713
+ * Upd: Rebuilding users/comments scan
714
+ * Fix: UltimateMember - form validation checking fixed.
715
+ * Fix: Exclusion for login form.
716
+ * Fix: Disable scripts on excluded pages.
717
+ * Fix: PHP 7.4 compability.
718
+ * Minor fixes.
719
+ * Spam protection improved.
720
+
721
+ = 5.132.3 December 19 2019 =
722
+ * Fix: The disable comments functionality.
723
+
724
+ = 5.132.2 December 17 2019 =
725
+ * Fix: The disable comments functionality.
726
+
727
+ = 5.132.1 December 17 2019 =
728
+ * Fix: Fatal PHP error.
729
+
730
+ = 5.132 December 17 2019 =
731
+ * Fix: PHP 7.4 compability
732
+ * New: Settings and description for "disable comments" functionality.
733
+ * Mod: WooCommerce settings moved to separate block.
734
+ * Minor fixes.
735
+ * Spam protection improved.
736
+
737
+ = 5.131 December 6 2019 =
738
+ * Fix: WooCommerce registration.
739
+ * Fix: Auto update on Wordperss Multisite.
740
+ * Fix: URLs exceptions validation.
741
+ * New: Secuirty improved.
742
+ * Spam protection is improved.
743
+ * Minor fixes ond improvments.
744
+
745
+ = 5.130.1 November 20 2019 =
746
+ * Fix: Plugin autoupdate issues.
747
+ * FIx: Woocommerce checking.
748
+ * Fix: Correct IP detection.
749
+ * Fix: CSV export not working after update.
750
+ * Fix: QuickForms duplicates issues.
751
+
752
+ = 5.130 November 14 2019 =
753
+ * Fix: JetPack contact form JS check.
754
+ * FIx: Iphorm AJAX form.
755
+ * Fix: Paid Memberships Pro fix.
756
+ * Fix: Divi theme contact form fix.
757
+ * Integration: Paid Memberships Pro.
758
+ * Integration: Elementor Pro page builder forms.
759
+ * Improved: Compatibility with different server.
760
+
761
+ = 5.129.1 November 5 2019 =
762
+ * Fix: WooCommerce order detecting.
763
+
764
+ = 5.129 October 30 2019 =
765
+ * Upd: Localize updated.
766
+ * Fix: Direct $_SERVER access replaced.
767
+ * Integration: The 7 theme contact form.
768
+ * Fix: Minor improvements and bug fixes.
769
+ * Mod: Putting site in maintenance mode during plugin update.
770
+
771
+ = 5.128.1 October 23 2019 =
772
+ * Fix: Fatal error when using buffer output.
773
+ * Fix: Translate domain for errors.
774
+ * Code: Fix spelling in function name.
775
+ * Fix: JS disabled error.
776
+ * Upd: Comment edit screen updated.
777
+ * Fix: Cleantalk\Arr::search() fixed.
778
+
779
+ = 5.128 October 17 2019 =
780
+ * Mod: Users check - functionality updated.
781
+ * Fix: Users check - dates format updated.
782
+ * Mod: Comments check - functionality updated.
783
+ * Fix: Comments check - dates format updated.
784
+ * Fix: Fields exclusion fixed.
785
+ * Fix: Notice fixed.
786
+ * Fix: Cleantalk/Antispam/API.
787
+ * Fix: Minor improvements and bug fixes.
788
+
789
+ = 5.127.4 October 13 2019 =
790
+ * Mod: Automatically decrease amount of checked users by one request if an error occurs.
791
+ * Fix: Security issue.
792
+ * Fix: Static JS key.
793
+
794
+ = 5.127.3 October 8 2019 =
795
+ * Fix: Errors during registration.
796
+
797
+ = 5.127.2 October 8 2019 =
798
+ * Integration: SeedProd Coming Soon Page Pro.
799
+ * Fix: WooCommerce double reuqests.
800
+ * Fix: Static JS key.
801
+
802
+ = 5.127.1 October 7 2019 =
803
+ * Fix: WPMS settings logic.
804
+ * Using default database storage engine for tables.
805
+
806
+ = 5.127 September 30 2019 =
807
+ * Fix: Delete redirect notice on external forms
808
+ * Fix: Storing spam for 15 days.
809
+ * Fix: correct DiVi display message.
810
+ * Integration: Ultimate Members.
811
+ * Mod: Setting "Use static JS key" switched to "Auto" if it was "No". Default is "Auto".
812
+ * Mod: Moving White Label option to main site settings.
813
+ * New: Use static JS key if cache plugin detected.
814
+ * New: Settings for URLs, fields, roles exclusions.
815
+ * New: Regular Expressions support in URLs, fields exclusions.
816
+ * New: Send validation errors on standard registration form.
817
+ * Updater: Move exclusions from global variable to settings.
818
+ * Deprecated: IP exclusions.
819
+
820
+ = 5.126 September 9 2019 =
821
+ * Spam protection improved!
822
+ * Integration: Option wheel.
823
+ * Mod: Improved Email detection.
824
+ * Mod: Improved IP detection.
825
+ * Fix: Too large database table with alternative sessions.
826
+ * Fix: Exception for WooCommerce AJAX.
827
+ * Fix: API key validation.
828
+ * Minor fixes.
829
+
830
+ = 5.125 August 26 2019 =
831
+ * Fix: PHP Notices.
832
+ * Fix: Auto update.
833
+ * Fix: Displaying protection status for IP license.
834
+ * Fix: prevent capturing buffer for XMLRPC requests (check_external functionality).
835
+ * Fix: API key validating.
836
+ * New: Complete deactivation setting.
837
+
838
+ = 5.124.1 August 8 2019 =
839
+ * Fix: Error on PHP 5.3.
840
+
841
+ = 5.124 August 8 2019 =
842
+ * Spam protection improved.
843
+ * Fix: SpamFireWall local database counter on Multisite.
844
+ * Fix: Caldera Forms integration.
845
+ * Fix: Settings "Use AJAX for JS check" description.
846
+ * Fix: Formidable integration.
847
+ * New: External forms check now independed from JavaScript.
848
+ * New: Setting Protect external - capture buffer.
849
+ * New: QuForm integration.
850
+
851
+ = 5.123 July 25 2019 =
852
+ * Fix: Plenty of minor fixes.
853
+ * Fix: wpDiscuz integration.
854
+ * Fix: Integration with bbPress.
855
+ * Fix: New comment email notification.
856
+ * New: Follow-Up Emails integration.
857
+ * Fix: Woocommerce integration.
858
+ * Fix: Spelling.
859
+
860
+ = 5.122 July 10 2019 =
861
+ * Spam Protection improved.
862
+ * Fix: Error while checking account status.
863
+ * Fix: Conflict with Elementor Pro.
864
+ * Fix: Integration with Ninja Forms.
865
+ * Fix: Integration with Formidable.
866
+ * New: Detecting mobile devices.
867
+ * New: Integration for Easy Forms for Mailchimp.
868
+
869
+ = 5.121 June 26 2019 =
870
+ * Fix: Translation typos.
871
+ * Fix: Woocommerce integration.
872
+ * Fix: Catching admin in AJAX queries.
873
+ * Mod: Session table (cleantalk_sessions) issue.
874
+ * Mod: Spam protection improved.
875
+ * Integration: Wilcity theme custom registration validation enabled
876
+ * New: Option "Use static JS key".
877
+
878
+ = 5.120.2 June 17 2019 =
879
+ * Fix: WPForms integration.
880
+ * Fix: Translation and spelling.
881
+ * Fix: Minor PHP error
882
+
883
+ = 5.120.1 June 6 2019 =
884
+ * Mod: Description for Search form protection.
885
+ * Fix: CSS and JS attachment.
886
+ * Fix: Undefined index error.
887
+
888
+ = 5.120 June 5 2019 =
889
+ * Fix: bbPress false positives.
890
+ * Fix: SpamFireWall check condition.
891
+ * Fix: SpamFireWall block page.
892
+ * Fix: Catch admin action via search form test.
893
+ * Fix: Catch admin action (AJAX).
894
+ * Mod: Using minified version of JS and CSS.
895
+ * Mod: Date format in statistics.
896
+
897
+ = 5.119.1 May 30 2019 =
898
+ * Fix: Helper class error.
899
+
900
+ = 5.119 May 30 2019 =
901
+ * Fix: No more second request after registration.
902
+ * Fix: Activation hook.
903
+ * Fix: Alternative sessions. Clear table.
904
+ * Fix: Stop capchuring AJAX requests in admin area.
905
+ * Fix: Spelling.
906
+ * Fix: Registration cookies set.
907
+ * Mod: SFW exdtended die page when testing.
908
+ * Mod: User-agent modified.
909
+ * New: Test search queries for spam.
910
+ * New: Gathering and output statistics.
911
+
912
+ = 5.118.4 May 13 2019 =
913
+ * Fix: SFW cookie. Set correct domain for subdomains.
914
+ * Fix: SFW update.
915
+ * Fix: IP detection.
916
+ * Fix: Triggering AJAX check in backend.
917
+ * Fix: Zero submit time on few forms.
918
+
919
+ = 5.118.3 April 29 2019 =
920
+ * Fix: Spam statistics in dashboard widget.
921
+ * Fix: IP detection.
922
+ * Fix: Double check AJAX integrated forms like Ninja Forms.
923
+ * Fix: Use url exclusions for AJAX forms.
924
+
925
+ = 5.118.2 April 25 2019 =
926
+ * Mod: Spam filtration quality improved.
927
+ * Mod: Store SFW cookie for 30 days.
928
+ * Mod: Server IP added to connection report.
929
+ * Fix: spam_stat is not defined.
930
+
931
+ = 5.118.1 April 19 2019 =
932
+ * Fix: Fatal error.
933
+ * Mod: Spam protection improved on registrations.
934
+
935
+ = 5.118 April 19 2019 =
936
+ * Fix: Cookies on registration page.
937
+ * Fix: Update fix.
938
+ * Fix: Wordpress built-in API.
939
+ * Fix: WooCommerce checkout form.
940
+ * Fix: UpdraftPlus. Saving settings.
941
+ * Fix: Convert Pro saving settings.
942
+ * Fix: UTF-8 Converting.
943
+ * Fix: GDPR notice.
944
+ * Fix: cleantalk_sessions table size reduced.
945
+ * Mod: Localization.
946
+ * Mod: Performance improved.
947
+ * Mod: SpamFierWall improvments.
948
+ * Mod: IP detection improved.
949
+ * Mod: JavaScript check rewised.
950
+ * New: Setting "Use alternative mechanism for cookies".
951
+
952
+ = 5.117.1 April 5 2019 =
953
+ * Fix: GDPR notice.
954
+ * Fix: noCacheJS localization.
955
+ * Fix: Fatal error when updating.
956
+
957
+ = 5.117 March 27 2019 =
958
+ * New: Update logic runs on all pages.
959
+ * New: Integration for Ajax Contact Forms plugin.
960
+ * New: Notification for users groups about new comments.
961
+ * New: SFW die page. Show browser and page creation time.
962
+ * Fix: Huge bug in Cleantalk.php connected with servers changing.
963
+ * Fix: Check AJAX requests for logged in users.
964
+ * Fix: Deleting debug in JS.
965
+ * Fix: Validating settings before saving.
966
+
967
+ = 5.116.3 March 14 2019 =
968
+ * Fix: "Headers already sent" error.
969
+ * Fix: Images paths.
970
+ * Fix: IP detection.
971
+ * Fix: Skip lost password form check
972
+ * Fix: Skip mobile requests (push settings)
973
+ * Fix: PHP notice when detecting BuddyPress template.
974
+
975
+ = 5.116.2 March 7 2019 =
976
+ * Fix: Creating tables in MariaDB.
977
+
978
+ = 5.116.1 March 6 2019 =
979
+ * Fix: Creating tables in DB.
980
+ * Fix: PHP Warning in spam statistics widget.
981
+
982
+ = 5.116 March 6 2019 =
983
+ * Spam filtration quality improved.
984
+ * New: Storing visited URLs.
985
+ * New: Check before validation Contact Form 7, Comments, Jetpack comments.
986
+ * New: Get validation result for Contact Form 7, Comments, Jetpack comments.
987
+ * Fix: ES add subscriber.
988
+ * Fix: IP detection.
989
+
990
+ = 5.115.2 February 27 2019 =
991
+ * Fix: False positives spam detection in WP Forms and Contact Form 7.
992
+
993
+ = 5.115.1 February 16 2019 =
994
+ * Fix: SpamFireWall's false positives.
995
+
996
+ = 5.115 February 14 2019 =
997
+ * Fix: Http_only flag for backend cookies.
998
+ * Fix: Spam filtration improved.
999
+ * New: IP detection improved.
1000
+ * Fix: SpamFirewall update speeded up.
1001
+ * New: False positives with caching solutions decreased.
1002
+ * New: Opportunity to use Wordpress HTTP API to connect with Cloud.
1003
+
1004
+ = 5.114 January 31 2019 =
1005
+ * New: Setting "Use Wordpress HTTP API" as alternative to CURL. Disabled by default.
1006
+ * Fix: Formidable: Adding small JS check when adding JS_key.
1007
+ * Mod: layout of settings page.
1008
+ * Mod: Banner logic altered.
1009
+
1010
+ = 5.113.2 January 18 2019 =
1011
+ * Fix: "Settings" link returns to plugin page.
1012
+
1013
+ = 5.113.1 January 17 2019 =
1014
+ * Fix: Conflict with CityTours theme.
1015
+ * Fix: Error for Wordpress lower 4.7.
1016
+ * Add: Spam protection: "Validate email for existence".
1017
+
1018
+ = 5.113 January 16 2019 =
1019
+ * Fix: Fast and Simple Contact Form.
1020
+ * Fix: Settings layout.
1021
+ * Fix: Error with WooCommerce Quickview.
1022
+ * Fix: Bitrix24 contact form.
1023
+ * Fix: Request time decreased.
1024
+ * Fix: Requesting account status when activating for IP licenses.
1025
+ * Add: Precise AJAX request detection.
1026
+ * Spam protection improved.
1027
+
1028
+ = 5.112 December 21 2018 =
1029
+ * Fix: Woocommerce AJAX checkout form.
1030
+ * Fix: Profile Builder Pro.
1031
+ * Fix: DB structure improvements for WPMS.
1032
+ * Spam filtering quality improved.
1033
+ * Minor fixes.
1034
+
1035
+ = 5.111 December 13 2018 =
1036
+ * Fix: Double request in JetPack contact form.
1037
+ * Fix: Email notification about spam registration.
1038
+ * Fix: Links button for feedback comments.
1039
+ * Fix: Mail notification about plugin error.
1040
+ * Fix: Key field output.
1041
+ * Minor fixes.
1042
+
1043
+ = 5.110 November 29 2018 =
1044
+ * Integration: BuddyPress ActivityWall spam protection.
1045
+ * Add: GDPR setting for shortcode.
1046
+ * Add: Support different BuddyPress templates on activity wall.
1047
+ * Fix: Admin/moderator checking for validate post data.
1048
+
1049
+ = 5.109 November 15 2018 =
1050
+ * Fix: Added URL and IP exclusions to Contact Form 7.
1051
+ * Fix: js error when responseText is not exists
1052
+ * Fix: Sitename when getting key automatically under WPMS.
1053
+ * Mod: SpamFireWall is now fully compatible with WPMS.
1054
+ * Mod: Setting 'Tell others about CleanTalk' was deleted.
1055
+ * Mod: Protection from spam improved.
1056
+
1057
+ = 5.108.1 November 8 2018 =
1058
+ * Fix: Errors with integration class.
1059
+
1060
+ = 5.108 November 7 2018 =
1061
+ * Fix: White label mode.
1062
+ * Fix: SpamFireWall now can be disabled.
1063
+ * Fix: Layout.
1064
+ * Integration: WPForms.
1065
+ * Add: Message about block for all no integrated AJAX forms.
1066
+ * Add: Displaying account name near api key.
1067
+
1068
+ = 5.107 October 29 2018 =
1069
+ * Fix: Ninja Forms integration.
1070
+ * Fix: Cookie usage.
1071
+ * Add: Capturing AJAX responses from non integrated forms.
1072
+ * Spam protection improved.
1073
+ * Minor fixes.
1074
+
1075
+ = 5.106 October 11 2018 =
1076
+ * Spam filtration improved.
1077
+ * New: White Label mode.
1078
+ * Modification: Warning message about test on SpamFireWall die page.
1079
+ * Integration: WP Maintenance Mode.
1080
+ * Fix: S2Member.
1081
+ * Fix: JavaScript attachments reconsidered.
1082
+ * Fix: Admin banners layout.
1083
+ * Fix: Minor layout fixes.
1084
+
1085
+ = 5.105 September 26 2018 =
1086
+ * Integration: Now bloking spam for QAEngine questions.
1087
+ * Fix: Async http__request call.
1088
+ * Fix: Unnecessary get_antispam_report_breif method call.
1089
+ * Layout: Hide "Do you like Cleantlak?" when key is not ok.
1090
+ * Layout: Minor fixes.
1091
+
1092
+ = 5.104 September 18 2018 =
1093
+ * Fix: Error when saving settings.
1094
+ * Fix: Trying update anti spam plugin for the first installation.
1095
+ * Fix: Update system.
1096
+ * Fix: Errors output.
1097
+ * Fix: Plugin's settings under WPMS.
1098
+ * Fix: SpamFireWall update.
1099
+ * Fix: The server change system repaired.
1100
+ * Mod: Cron saving tasks improved.
1101
+
1102
+ = 5.103.1 September 14 2018 =
1103
+ * Fix: Error when saving settings.
1104
+ * Fix: Error when getting key automatically.
1105
+
1106
+ = 5.103 September 13 2018 =
1107
+ * Fix: Gravity Forms response message.
1108
+ * Fix: SpamFireWall redirect to 404 page.
1109
+ * Major anti-spam plugin improvement.
1110
+ * Recombined setting page.
1111
+ * Added error notification.
1112
+ * Mod: S2 Members integration.
1113
+ * Mod: Improved remote calls.
1114
+
1115
+ = 5.102 August 29 2018 =
1116
+ * Fix: Users and comments check.
1117
+ * Fix: Update from 5.70 or previous versions.
1118
+ * Fix: GDPR public JS-script.
1119
+ * Fix: Dashboard widget JS scripts attachment.
1120
+ * Fix: WooCommerce "Place order" action.
1121
+ * Mod: Notification logic altered.
1122
+ * Mod: Users check table now has 'Signed up' column.
1123
+ * Minor fixes.
1124
+
1125
+ = 5.101 August 10 2018 =
1126
+ * Fix: Set cookie only for non-dashboard pages.
1127
+ * Fix: Dashboard widget JS error.
1128
+ * Fix: JavaScript error for some environment.
1129
+ * Mod: Antispam protection accelerated for some pages.
1130
+
1131
+ = 5.100 July 30 2018 =
1132
+ * Fix: JavaScript dependencies.
1133
+
1134
+ = 5.99.1 July 17 2018 =
1135
+ * IP detection fixed and improved.
1136
+
1137
+ = 5.99 July 10 2018 =
1138
+ * Fix: WooCommerce false positives.
1139
+ * Fix: SpamFireWall IP detection.
1140
+ * Minor fixes.
1141
+
1142
+ = 5.98 June 27 2018 =
1143
+ * Fix: WooCommerce: Theme exclusion.
1144
+ * Fix: Public GDPR JS code.
1145
+ * Minor fixes.
1146
+
1147
+ = 5.97 June 7 2018 =
1148
+ * Fix: Update system.
1149
+ * Fix: Feedback from public page (admin only).
1150
+ * Fix: Users and comment check: API error.
1151
+ * Fix: Too many negative reports. (Too big ct_data option)
1152
+ * Fix: SpamFireWall: Infinite redirection on the blocking page.
1153
+ * Minor fixes.
1154
+
1155
+ = 5.96 May 22 2018 =
1156
+ * Fix: Update system.
1157
+ * Mod: Reset all counters button in admin bar.
1158
+ * Mod: GDPR compliance.
1159
+ * Minor fixes.
1160
+
1161
+ = 5.95.1 May 3 2018 =
1162
+ * Fix: "Get key automatically" button display logic.
1163
+ * Fix: PHP notices.
1164
+
1165
+ = 5.95 May 2 2018 =
1166
+ * Spam filtration improved.
1167
+ * Fix: Public widget layout.
1168
+ * Fix: Connection reports output.
1169
+ * Minor fixes.
1170
+
1171
+ = 5.94 April 23 2018 =
1172
+ * Mod: Async load option for JS.
1173
+ * Mod: JS scripts loading is conditional.
1174
+ * Fix: IP detection.
1175
+ * Fix: IP detection.
1176
+ * Fix: Javascript error.
1177
+
1178
+ = 5.93.1 April 9 2018 =
1179
+ * Fix: Fatal error on PHP 5.5 or lower.
1180
+
1181
+ = 5.93 April 9 2018 =
1182
+ * Fix: Spam FireWall IP detection.
1183
+ * Fix: Contact Form 7. False positives.
1184
+ * Mod: Autoupdate function improved.
1185
+ * Minor fixes.
1186
+
1187
+ = 5.92.2 March 23 2018 =
1188
+ * Fix: Error if cURL extension is disabled.
1189
+
1190
+ = 5.92.1 March 23 2018 =
1191
+ * Fix: Spelling
1192
+ * Fix: Fatal error if cURL extension is disabled.
1193
+
1194
+ = 5.92 March 22 2018 =
1195
+ * IP detection improved.
1196
+ * Fix: SSL connection.
1197
+ * Fix: False positives spam detection in Contact Form 7.
1198
+ * Minor fixes.
1199
+
1200
+ = 5.91 March 15 2018 =
1201
+ * Fix: Errors for PHP compiled without XML support.
1202
+ * Fix: Spelling and translation.
1203
+ * Stability increased.
1204
+ * Minor fixes.
1205
+
1206
+ = 5.90 March 7 2018 =
1207
+ * Improvement: Better IP recognition in Spam FireWall.
1208
+ * Fix: Gravity Froms blocking message.
1209
+ * Security improvments.
1210
+ * Minor fixes.
1211
+
1212
+ = 5.89 February 21 2018 =
1213
+ * Improved spam filtration quality.
1214
+ * Improved compatibility.
1215
+ * Public widget: Styles and referral link added.
1216
+ * Dashboard widget: revised and fixed.
1217
+ * Minor fixes.
1218
+
1219
+ = 5.88 February 12 2018 =
1220
+ * Integration: ConvertPro.
1221
+ * Improvement: Search for visitor's names in request.
1222
+ * Fix: Contact Form 7 message recognition.
1223
+ * Preparation for the remote plugin update.
1224
+ * Minor fixes.
1225
+
1226
+ = 5.87 February 2 2018 =
1227
+ * Filtration quality improved.
1228
+ * Fix: WP Foto Vote downloading images.
1229
+ * Fix: Fatal error for unsupported PHP 5.2.
1230
+ * Fix: Formidable Forms improved spam filtration.
1231
+
1232
+ = 5.86 January 25 2018 =
1233
+ * Fix: High CPU load with wp-ajax.php.
1234
+ * Fix: Mailpoet: Newsletter.
1235
+ * Fix: Gravity: Forms standardization for input fields.
1236
+ * Fix: ajax hook checks data for contact form.
1237
+ * Fix: UTF8 character in requests.
1238
+
1239
+ = 5.85 January 11 2018 =
1240
+ * Fix: Fast Secure contact form spam block message.
1241
+ * Fix: IP license status.
1242
+ * Layout: Dashboard widget description altered.
1243
+
1244
+ = 5.84 December 26 2017 =
1245
+ * Integration: PeepSo contact form
1246
+ * Repared: Feedback from comments page.
1247
+ * Fix: mb_* functions used only if exists.
1248
+ * Fix: Gravity forms: Multi-page form logic repared.
1249
+ * Fix: Gravity forms: AJAX form logic repared.
1250
+ * Minor fixes.
1251
+
1252
+ = 5.83.2 December 19 2017 =
1253
+ * Fix: Error in base class.
1254
+
1255
+ = 5.83.1 December 19 2017 =
1256
+ * Fix: CDN IP detection.
1257
+
1258
+ = 5.83 December 19 2017 =
1259
+ * Improving: Stability and compatibility.
1260
+ * Improving: Spam protection.
1261
+ * Fix: Comments logic filtration.
1262
+ * Fix: Admin bar counter.
1263
+ * Minor errors fixes.
1264
+
1265
+ = 5.82.1 December 7 2017 =
1266
+ * Fixed minor error with attaching JS and CSS files.
1267
+
1268
+ = 5.82 December 4 2017 =
1269
+ * Plugin doesn't use PHP sessions anymore.
1270
+ * Bug fixes.
1271
+ * Improved update logic.
1272
+
1273
+ = 5.81 November 22 2017 =
1274
+ * Fixed error with "Show/Hide key" button.
1275
+ * Slightly improved spam protection for all forms.
1276
+ * Small errors fixes.
1277
+
1278
+ = 5.80 November 3 2017 =
1279
+ * Spam protection improved.
1280
+ * Improved filtration quality for WooCommerce checkout.
1281
+ * Minor fixes for Spam FireWall.
1282
+
1283
+ = 5.79 October 26 2017 =
1284
+ * Spam protection improved.
1285
+ * Fixed issue with existing spam comments check.
1286
+ * Added posibility to exclude IP from check.
1287
+ * Minor fixes.
1288
+
1289
+ = 5.78 October 16 2017 =
1290
+ * Improved compatibility with themes. Changed core functions prefix.
1291
+ * Fixed issue with WooCommerce checkout.
1292
+ * Spam protection improved.
1293
+ * Minor fixes.
1294
+
1295
+ = 5.77 October 2 2017 =
1296
+ * Connection report's system.
1297
+ * Integration for CouponXXL Theme.
1298
+ * Fixed issue with mb_* functions.
1299
+ * Banners logic updated.
1300
+
1301
+ = 5.76 September 20 2017 =
1302
+ * Fixed issue with Spam FireWall and caching plugins.
1303
+ * Banners logic updated.
1304
+
1305
+ = 5.75 September 15 2017 =
1306
+ * Pause feature for users/comments spam check.
1307
+ * Improved protection from spam.
1308
+ * Small fixes.
1309
+
1310
+ = 5.74.2 September 2 2017 =
1311
+ * Fix for users spam check for PHP 5.3 and lower.
1312
+
1313
+ = 5.74.1 September 2 2017 =
1314
+ * Fix for the update system and cloud communication.
1315
+ * Added possibility to check users and comments for spam with a specific date range.
1316
+
1317
+ = 5.74 August 31 2017 =
1318
+ * Users and comments spam check: Two check types (fast and accurate).
1319
+ * Fix for WooCommerce checkout test.
1320
+ * Minor fixes.
1321
+
1322
+ = 5.73 August 11 2017 =
1323
+ * Fix for spam check for already existed users and comments.
1324
+ * Spam FireWall updated.
1325
+ * Layout fix for BT Comments.
1326
+ * Minor fixes.
1327
+
1328
+ = 5.72 July 27 2017 =
1329
+ * Improved spam check for existed users and comments.
1330
+ * Minor fixes.
1331
+
1332
+ = 5.71 July 20 2017 =
1333
+ * Improved spam protection for external forms.
1334
+ * Optimization.
1335
+ * Minor fixes.
1336
+
1337
+ = 5.70.2 July 17 2017 =
1338
+ * Fix for Spam FireWall for Multisite.
1339
+
1340
+ = 5.70.1 July 17 2017 =
1341
+ * Fix for Spam FireWall.
1342
+ * Spam detection improved.
1343
+
1344
+ = 5.70 July 13 2017 =
1345
+ * New updater logic.
1346
+ * Self cron system.
1347
+ * Improved AMP compatibility.
1348
+ * Optimization.
1349
+ * Fixed users and comments spam check.
1350
+ * Fixed layout for Comment's feedback from public page.
1351
+ * Updated Spam FireWall.
1352
+ * SFW: Spam FireWall counter now work in real-time.
1353
+ * SFW: Improved compatibility with different Data Bases.
1354
+
1355
+ = 5.69 July 3 2017 =
1356
+ * Reviewer - integration.
1357
+ * Optimization for Users and Comments check for big databases.
1358
+ * Errors fixes.
1359
+ * Improved protection from spam.
1360
+
1361
+ = 5.68 June 22 2017 =
1362
+ * Contact Form for WordPress - Ultimate Form Builder Lite - integration.
1363
+ * Contact Bank - Contact Forms Builder - integration.
1364
+ * Smart Forms - integration.
1365
+ * cformsII - integration.
1366
+ * Contact Form by Web-Settler - integration.
1367
+ * Error fixes.
1368
+
1369
+ = 5.67.3 June 9 2017 =
1370
+ * Fixed JS attachment error.
1371
+
1372
+ = 5.67.2 June 5 2017 =
1373
+ * Fixed error with IP determination.
1374
+
1375
+ = 5.67.1 June 4 2017 =
1376
+ * Fixed JS error in 5.67 version.
1377
+ * Integrations: Enfold theme, Convertplug.
1378
+ * Links to check for Emails/IP for spam.
1379
+ * Control comments and feedback about them from public post's page.
1380
+ * Improved connection stability with cloud service.
1381
+ * Spam protection improved.
1382
+ * Other small fixes.
1383
+
1384
+ = 5.67 June 1 2017 =
1385
+ * Integrations: Enfold theme, Convertplug.
1386
+ * Links to check for Emails/IP for spam.
1387
+ * Control comments and feedback about them from public post's page.
1388
+ * Improved connection stability with cloud service.
1389
+ * Spam protection improved.
1390
+ * Other small fixes.
1391
+
1392
+ = 5.66 May 23 2017 =
1393
+ * Spam protection improved.
1394
+ * Major fixes for users and comments spam check.
1395
+ * Added feedback from Wordpress comments list.
1396
+ * Fix for "internal forms check" option.
1397
+ * Fixed issue with caching Spam FireWall die page.
1398
+ * Other small fixes.
1399
+
1400
+ = 5.65 May 16 2017 =
1401
+ * Fix for PayPal redirecton.
1402
+ * Fixed issue with empty query for bulk comments test.
1403
+ * Added protection for Enfold contact form.
1404
+ * Ninja forms integration.
1405
+
1406
+ = 5.64 April 26 2017 =
1407
+ * Integration for Facebook registrations.
1408
+ * Small fixes for WPMS.
1409
+ * Fix for Activecampaign service.
1410
+ * Fix for check spam users.
1411
+ * Fixed rare notice Notice: Undefined index: REQUEST_URI
1412
+
1413
+ = 5.63 April 20 2017 =
1414
+ * Fix for the dashboard spam stat widget.
1415
+ * Added translation posibility for all text.
1416
+
1417
+ = 5.62 April 17 2017 =
1418
+ * Fix for the dashboard spam statistics widget.
1419
+ * Fix for users spam check.
1420
+ * Small appearance changes.
1421
+
1422
+ = 5.61 April 6 2017 =
1423
+ * Improved filtration.
1424
+ * Additional logic for the form recognizing.
1425
+ * Integration: Divi Theme Contact Form.
1426
+ * Fix: Gravity Forms multipages forms.
1427
+ * Stat Widget: Minor fixes.
1428
+ * Added possibility to download results of the users check in CSV format.
1429
+ * Alteration for settings page (footer).
1430
+
1431
+ = 5.60.1 March 29 2017 =
1432
+ * Fixed error function 'locale_get_display_region' no exists.
1433
+
1434
+ = 5.60 March 29 2017 =
1435
+ * Added main dashboard widget with spam sctivity stats.
1436
+ * Mailster - integration.
1437
+ * Base class updated.
1438
+
1439
+ = 5.59 March 24 2017 =
1440
+ * Users/comments check fix.
1441
+ * Plugin's name changed to Anti-Spam by CleanTalk.
1442
+ * Trial banner is dismissable. Disapear for 24h or till logout.
1443
+ * Settings modified (Auto testing failed warning).
1444
+ * Mailing(inactive key) interval increased to 6 hours.
1445
+
1446
+ = 5.58.6 March 16 2017 =
1447
+ * Fix for Ninja forms (protection updated).
1448
+ * Fix for QA Theme.
1449
+ * Fix for RSVP form.
1450
+ * Setting changes (Spam FireWall).
1451
+ * Improved debug section.
1452
+ * Improved gathering data function.
1453
+ * Minor fixes.
1454
+
1455
+ = 5.58.5 March 6 2017 =
1456
+ * Minor backend fix.
1457
+
1458
+ = 5.58.4 March 6 2017 =
1459
+ * Users check fix (redirect after the check).
1460
+ * Fixed PHP Notice "HTTP_REFERER" is unset.
1461
+ * Updated Notice logic.
1462
+
1463
+ = 5.58.3 February 28 2017 =
1464
+ * Bitrix24 Contact form integration.
1465
+ * Users/comments check fix.
1466
+ * Spam sorting updated.
1467
+ * Banner showing logic.
1468
+
1469
+ = 5.58.2 February 17 2017 =
1470
+ * Cron fix for daily report.
1471
+
1472
+ = 5.58.1 February 16 2017 =
1473
+ * Minor fixes.
1474
+
1475
+ = 5.58 February 15 2017 =
1476
+ * Work without access key
1477
+ * Bitrix24 contact integration
1478
+ * Issues fixes
1479
+
1480
+ = 5.57.1 February 8 2017 =
1481
+ * Fix for notice logic.
1482
+
1483
+ = 5.57 February 8 2017 =
1484
+ * Setting page changes.
1485
+ * Bug fixes for WooCommerce.
1486
+ * Spam FireWall filters only GET requests.
1487
+ * Optimization.
1488
+ * Minor and major fixes.
1489
+
1490
+ = 5.56.1 January 25 2017 =
1491
+ * Minor fixes
1492
+
1493
+ = 5.56 January 19 2017 =
1494
+ * Integrations: MailChimp Premium, Profile Press.
1495
+ * Changes comments flow.
1496
+ * FireWall updater fix.
1497
+ * Users check optimization.
1498
+
1499
+ = 5.55 December 23 2016 =
1500
+ * Integrations: Caldera Forms, Visual Form Builder.
1501
+ * Fix for different 'cookies' header names.
1502
+ * Fixed user deletion.
1503
+
1504
+ = 5.54 December 12 2016 =
1505
+ * Integrations: AmoForms, Contact Form Clean and Simple.
1506
+ * Comments check logic refreshed.
1507
+ * Registration JS error fix.
1508
+ * Users check fix.
1509
+ * Fix for translation system.
1510
+ * Minor fixes.
1511
+
1512
+ = 5.53.1 December 9 2016 =
1513
+ * Minor layout fixes.
1514
+
1515
+ = 5.53 November 28 2016 =
1516
+ * Addition warning before deleting users.
1517
+ * Spam FireWall is enabled by default.
1518
+ * Usernoise modal feedback / contact form : integration.
1519
+ * Translations.
1520
+ * Optimization.
1521
+ * Fixes.
1522
+
1523
+ = 5.52.1 November 14 2016 =
1524
+ * Users and comments check: Using new API method.
1525
+ * Quick Contact From: Integration via "Custom Contact Forms" setting.
1526
+ * JavaScript filtration improved.
1527
+ * Translation changes.
1528
+ * Optimized JavaScript code.
1529
+
1530
+ = 5.51 November 2 2016 =
1531
+ * Added protection for internal forms
1532
+ * Immediate spam check for comments and users from WP dashboard
1533
+ * Optimized code
1534
+
1535
+ = 5.50.1 October 24 2016 =
1536
+ * Improved filtration in contact forms.
1537
+ * Spam FireWall: Fixed issue with SFW logs
1538
+ * Skipping service fields: Fast Secure Contact Froms, QU Forms, Custom Contact Forms
1539
+
1540
+ = 5.50 October 20 2016 =
1541
+ * Custom contact forms: integration.
1542
+ * Pirate Forms: integration.
1543
+ * PHP 7 compatibility: Deleted third-party JSON library and dependences.
1544
+ * PHP 7 compatibility: Fixed end of lines.
1545
+ * YOAST Seo: Fixed PHP warnings.
1546
+ * Spam FireWall: Minor fix for Spam FireWall counter.
1547
+ * Only admin could access to CleanTalk dashboard (exclude Authors an Editors).
1548
+ * Improved filtration in contact forms.
1549
+
1550
+ = 5.49.2 October 5 2016 =
1551
+ * Second Fix for database error. Stable version.
1552
+
1553
+ = 5.49.1 October 5 2016 =
1554
+ * Fixed database error.
1555
+
1556
+ = 5.49 October 3 2016 =
1557
+ * Spam FireWall feature: Class upgraded.
1558
+ * New feature: Delete links from approved comments.
1559
+ * Settings: Grouped.
1560
+ * Settings: Altered description fixed spelling mistakes.
1561
+ * Settings: Added indicator for Spam FireWall.
1562
+ * Admin bar: Added Spam FireWall counter
1563
+ * Clean and Simple Contact Form: Direct integration.
1564
+ * WooCommerce: Don't check password recovery form.
1565
+ * WooCommerce Wishlists: Issue with check for Google bots.
1566
+ * JetPack: contact form fix.
1567
+ * Fixed and created the defaults for all CleanTalk options.
1568
+ * Fixed spelling mistakes.
1569
+
1570
+ = 5.48 September 15 2016 =
1571
+ * buddyPress: Added private messages filtering. Doesn't check user if he has 3 or more messages in the "sentbox" and "inbox" folders.
1572
+ * buddyPress: Added option in settings for private messages check.
1573
+ * WooCommerce Wishlist: Added check for wishlists.
1574
+ * Fixed issue with "check all post data" option.
1575
+ * Improved filtering for Gravity Forms
1576
+ * Mobile Assistant Connector fix
1577
+ * Minor fixes.
1578
+
1579
+ = 5.47 September 5 2016 =
1580
+ * WooCommerce: direct integration for checkout form.
1581
+ * WooCommerce Sensei: login form fix.
1582
+ * bbPress: Added the check for topics and comments with stop_words
1583
+ * bbPress: Skip check for admin in comments and topics
1584
+ * UserPro: fixes. Request without field "shortcode"
1585
+ * Contact Form 7: Bug fix.
1586
+ * Spam FireWall: Optimized logs rotation.
1587
+ * Updated inner functions (compatibility fix for PHP 5.4+)
1588
+ * Fixed output of counters (without spamfirewall stats)
1589
+ * Fixed spelling in settings
1590
+ * Added "Delete from the list" button in comments spam check page
1591
+ * Minor fixes.
1592
+
1593
+ = 5.46 August 17 2016 =
1594
+ * Fixed issue with admin bar links in WP Multi Network mode.
1595
+ * Added "All time counter" and "Daily counter" into admin bar.
1596
+ * Added settings to disable counters in admin bar.
1597
+ * New style for "Get access key manually" button.
1598
+
1599
+ = 5.45.2 August 4 2016 =
1600
+ * Added Anti-Spam protection for Quick Event Manager.
1601
+ * Improved bulk spam test for users. Now the plugin does not mark as Spam user, if the user IP address has spam activity more than 30 days ago.
1602
+ * Fixed bulk spam test for comments. Previous version had a conflict between spam history for IP and Email.
1603
+ * Minor fix function to get the API key.
1604
+
1605
+ = 5.45.1 July 26 2016 =
1606
+ * Fixed issue with missed spam messages, subscriptions.
1607
+ * Improved bulk spam test for comments. Now the plugin will not mark as Spam comments, if a comment sender (IP address) has spam activity more than 30 days ago.
1608
+
1609
+ = 5.45 July 21 2016 =
1610
+ * Optimized bulk spam comments deletion.
1611
+ * Turned off JavaScript anti-spam cookies if the option 'Set cookies' is turned off. It helps to avoid issues with Varnish.
1612
+ * Added links to bulk spam comments&users removal tool.
1613
+
1614
+ = 5.44.1 July 13 2016 =
1615
+ * Optimized options getting code.
1616
+ * Added the option 'Protect Logged in users' to do anti-spam tests for submissions by logged in users.
1617
+
1618
+ = 5.43.2 June 30 2016 =
1619
+ * Optimized anti-spam code for AJAX based contact forms.
1620
+ * Fixed CSS layout of counters in Admin bar (issue with layout in IE11).
1621
+
1622
+ = 5.43.1 June 23 2016 =
1623
+ * Added agent version in requests to test a connection between the website and servers.
1624
+ * Fixed issue with PHP notices in cleantalk-admin.php.
1625
+
1626
+ = 5.43 June 22 2016 =
1627
+ * Added spam protection for registrations via 'Login with AJAX' plug-in.
1628
+ * Added a new counter to Admin bar that allows to count spam and approved submissions since last reset.
1629
+ * Update the code that tests a connection between a website and CleanTalk's servers. New version doesn't generate submissions with email good@cleantalk.org.
1630
+ * Fixed issue with spam protection for nested forms by Formidable plug-in.
1631
+
1632
+ = 5.42 2016-06-15 =
1633
+ * Added anti-spam protection for UserPro.
1634
+ * Improved protection for Formidable forms + Varnish.
1635
+ * Improved bulk search for spam accounts.
1636
+ * Fixed spam protection for pages that contain multiple Formidable forms with same HTML ID.
1637
+ * Optimized PHP code to be compatible with PHP 5.4 and above. The patch has been applied to Formidable forms spam protection.
1638
+ * Minor fixes in plugin backend.
1639
+
1640
+ = 5.41 2016-05-31 =
1641
+ * Added HTTP response in plugin response if an network issue was happend.
1642
+ * Optimized JavaScript anti-spam test for Formidable forms.
1643
+ * Re-stored the option to auto redirect to plugn settings after plugin activation.
1644
+ * Updated Spanish, Russian translations.
1645
+ * Fixed issue with nasted fields in Formidable forms.
1646
+
1647
+ = 5.40.3 2016-05-26 =
1648
+ * Added option to encrypt (SSL) connection to CleanTalk anti-spam servers.
1649
+ * Added JSON encoding for AJAX forms.
1650
+ * Obfuscated private data for Custom contact forms option.
1651
+ * Optimized bulk users check for spam over blacklists database.
1652
+ * Fixed issue with lost connection to servers and JavaScript anti-spam test.
1653
+ * Fixed issue with WordFence and collect_details.
1654
+
1655
+ = 5.40.2 2016-05-11 =
1656
+ * Improved account status check logic.
1657
+ * Fixed issue with double anti-spam tests for FastSecure contact forms.
1658
+ * Fixed issue with nulled JavaScript variables assigned from backend. This issue might me occurred on standart WordPress registration form and with failed JavaScript spam test.
1659
+ * Fixed issue with session_start() with PHP sessions stored in memcache.
1660
+
1661
+ = 5.40.1 2016-04-28 =
1662
+ * Fixed issue with Super Socializer.
1663
+ * Fixed issue with spam filtration for logged in users and Formidable forms.
1664
+ * Added logging of all submitted fields for FastSecure contact form.
1665
+
1666
+ = 5.40 2016-04-19 =
1667
+ * Added JSON encoding for posts that were protected via Custom contact forms option. It allows show anti-spam logs in the Dashboard in more comfortable view.
1668
+ * Minor fix in plugin settings.
1669
+ * Fixed pagination for bulk users spam test.
1670
+ * Fixed issue with unknown _SESSION.
1671
+ * Fixed issue with double Spam FireWall database upload.
1672
+
1673
+ = 5.39.1 2016-04-04 =
1674
+ * Improved AJAX based anti-spam test with HTTPS backends.
1675
+ * Added fix to avoid issue with empty ct_info_flag on JavaScript side.
1676
+ * Added logic to exclude caching for Spam FireWall.
1677
+ * Removed a condition to skip accounts with 127.0.0.1 IP in spam test for registered acconts.
1678
+
1679
+ = 5.38.1 2016-03-24 =
1680
+ * Fixed issue with PHP sessions and 'The session id is too long or contains illegal characters'.
1681
+ * Removed Spam FireWall protection on /feed page.
1682
+ * Disabled anti-spam tests for AJAX calls if the option 'Custom contact forms' is turned off.
1683
+ * Added reject notice for spam submissions on Gravity forms with AJAX calls.
1684
+
1685
+ = 5.37.3 2016-03-10 =
1686
+ * Fixed bug with broken MailPoet previews.
1687
+ * Fixed bug with broken Geo My WP pop-up windows.
1688
+ * Fixed issue with mb_convert_encoding() function.
1689
+ * Removed double JavaScript code in front-end.
1690
+ * Removed unused variables in anti spam logic.
1691
+ * Added option 'Set cookies' (turned on by default). If the option turned off, the plugin will not generate cookies, but in this case plugin will not protect some rarely used contact forms. Any way, turn this option off be compatible with Varnish in spam protection for WordPress core comments, registrations and most popular contact forms.
1692
+ * Added anti-spam protection for Gravity forms via option 'Contact forms' with hook gform_entry_is_spam().
1693
+
1694
+ = 5.36.1 2016-02-05 =
1695
+ * Fixed bug, when users receive error after logging in
1696
+ * Improve anti-spam filters for contact forms.
1697
+
1698
+ = 5.36 2016-02-04 =
1699
+ * Improved JavaScript anti spam protection
1700
+ * Improvements for avoiding blocking requests from payment systems
1701
+
1702
+ = 5.35 2016-01-14 =
1703
+ * Added support for IP licensing
1704
+ * Some anti-spam protection improvements
1705
+ * Small backend interface fixes
1706
+
1707
+ = 5.34.1 2015-12-17 =
1708
+ * Fixed trackback antispam protection: improved checking mechanism
1709
+ * Fixed problem with blocking MailPoet: added exclusions in spam checking algorithm
1710
+
1711
+ = 5.34 2015-12-10 =
1712
+ * Improved spam checking mechanism
1713
+ * Added "Collect browser details" option for better antispam protection
1714
+ * Fixed custom contact forms checking for AJAX requests
1715
+ * Minor translations fixes
1716
+
1717
+ = 5.33.1 2015-12-04 =
1718
+ * Fixed issue with BBPress: restored old user permission checking mechanism
1719
+ * Fixed anti-spam comments checking: sometimes get_comments returned wrong comments number
1720
+ * Fixed bulk checking: made numeric indexes in users and comments arrays
1721
+ * Fixed trackback and pingback checking: removed exception for checking
1722
+
1723
+ = 5.33 2015-12-01 =
1724
+ * Backend interface fixes
1725
+ * Improved Spam FireWall efficiency
1726
+ * Improved performance of anti spam checking
1727
+
1728
+ = 5.32 2015-11-26 =
1729
+ * Added improvements for manual spam detection
1730
+ * Fixed errors in backend
1731
+ * Fixed bulk users anti spam checking
1732
+ * Added indicator for bulk spam checking
1733
+ * Added "Get access key automatically" button
1734
+
1735
+ = 5.31 2015-11-11 =
1736
+ * Improved backend performance
1737
+ * Fixed counter of approved/blocked spam attacks
1738
+ * Fixed Spam FireWall logging
1739
+
1740
+ = 5.30 2015-11-05 =
1741
+ * Improved anti-spam checking
1742
+ * Optimized performance
1743
+ * Fixed blocking email preview in MailPoet
1744
+ * Interface fixes
1745
+ * WPMU interface fixes
1746
+
1747
+ = 5.29 2015-10-27 =
1748
+ * Optimized performance
1749
+ * Fixed bugs in custom contact forms spam checking
1750
+
1751
+ = 5.28.7 2015-10-23 =
1752
+ * Optimized PHP sessions creation algorithm. This fix should increase plugin perfomance on hostings without retenion of PHP sessions files.
1753
+ * Removed autoredirection to plugin settings after plugin activation.
1754
+
1755
+ = 5.28 2015-10-16 =
1756
+ * Fixed errors in anti-spam checking
1757
+ * Restored options for spam checking registrations and cpmmon contact forms
1758
+ * Improved spam protection
1759
+ * Fixed problems with AJAX functionality in MailPoet, WooCommerce and other AJAX plugins
1760
+
1761
+ = 5.27 2015-10-13 =
1762
+ * Improvements in SpamFireWall feature
1763
+ * Code optimization
1764
+ * Backend interface fixes
1765
+
1766
+ = 5.26 2015-10-05 =
1767
+ * Added WordPress Language Pack support
1768
+ * Removed spam checking for some autorisation plugins
1769
+ * New experimental feature: SpamFireWall
1770
+
1771
+ = 5.25.2 2015-09-28 =
1772
+ * Fixed backend bug
1773
+
1774
+ = 5.25.1 2015-09-28 =
1775
+ * Added widget with anti-spam stats
1776
+ * Added information about blocked spam attacks in admin dashboard and CleanTalk settings
1777
+ * Added ability not to check comments for users with 3 or above allowed comments
1778
+ * Added an option 'Help others known CleanTalk' to show information for site visitors, that your site is protected from spam by us
1779
+ * Some backend interface settings
1780
+
1781
+ = 5.24.1 2015-09-16 =
1782
+ * Fixed some errors in frontend
1783
+ * Fixed access key saving
1784
+
1785
+ = 5.24 2015-09-14 =
1786
+ * Backend interface fixes
1787
+ * Improvement for AJAX JavaScript spam checking
1788
+
1789
+ = 5.23 2015-09-01 =
1790
+ * Fixed BuddyPress profile search false positivities of anti-spam protection.
1791
+ * Some interface fixes of bulk users & comments spam checking
1792
+
1793
+ = 5.22 2015-08-26 =
1794
+ * Fixed possible XSS issue for anti-spam test on third-party forms.
1795
+
1796
+ = 5.21 2015-08-21 =
1797
+ * Fixed bug with skipping spam submissions
1798
+ * Fixed bug with receiving old user_token for viewing anti-spam stats
1799
+ * Small backend fixes
1800
+
1801
+ = 5.20 2015-08-15 =
1802
+ * Fixed anti-spam stats in admin bar - now stats updates every hour
1803
+ * Fixed issue with skipping spam submissions
1804
+ * Added some PHP-constants for advanced users - CLEANTALK_AJAX_USE_BUFFER and CLEANTALK_AJAX_USE_FOOTER_HEADER can be defined to true or false in wp-config.php to control method, which will be used for injection of AJAX script.
1805
+
1806
+ = 5.19 2015-08-11 =
1807
+ * New feature: anti-spam checking for registered users
1808
+ * Fixed issue with AJAX JavaScript anti-spam test.
1809
+ * Fixed issue with SEO Yoast xml sitemaps and JavaScript anti-spam test.
1810
+
1811
+ = 5.18 2015-08-04 =
1812
+ * Fixed issue with user_token
1813
+ * Added anti-spam API, see our FAQ
1814
+
1815
+ = 5.17 2015-07-23 =
1816
+ * Fixed infinite redirection after activation
1817
+ * Minor backend fixes
1818
+
1819
+ = 5.16 2015-07-22 =
1820
+ * Fixed external services checking
1821
+ * Fixed mass comments deletion
1822
+ * Fixed AJAX anti-spam protection
1823
+
1824
+ = 5.15 2015-07-16 =
1825
+ * New feature: anti-spam protection for forms, that uses external services
1826
+
1827
+ = 5.14 2015-07-03 =
1828
+ * Added anti-spam protection for some themes and plugins
1829
+ * Some backend fixes
1830
+
1831
+ = 5.13 2015-06-12 =
1832
+ * Closing notification for anti-spam renew
1833
+ * Fixed bulk anti spam comment checking
1834
+
1835
+ = 5.12 2015-06-01 =
1836
+ * Added option for checking all post data for spam
1837
+ * Some JavaScript protection improvements
1838
+ * Added option for old JavaScript check (without AJAX)
1839
+
1840
+ = 5.10 2015-05-25 =
1841
+ * Fixed Javascript error on some forms
1842
+
1843
+ = 5.9 2015-05-21 =
1844
+ * Fixed Javascript error on CF7 and JetPack
1845
+ * Some backend and frontent fixes
1846
+
1847
+ = 5.8 2015-05-18 =
1848
+ * Minor fixes
1849
+
1850
+ = 5.7 2015-05-18 =
1851
+ * Fixed French translation
1852
+ * Fixed protection algorithm
1853
+
1854
+ = 5.6 2015-05-11 =
1855
+ * Fixed translation
1856
+ * Fixed bulk comments anti-spam checking
1857
+ * Added option for disabling anti spam stats in adminbar
1858
+ * Some security fixes
1859
+
1860
+ = 5.5 2015-04-29 =
1861
+ * Fixed security issue
1862
+ * Some interface fixes
1863
+
1864
+ = 5.4 2015-04-27 =
1865
+ * Some interface and functionality changes in plugin settings page
1866
+ * Added counter for anti-spam stats in admin bar
1867
+
1868
+ = 5.3 2015-04-13 =
1869
+ * Added anti-spam protection for Divi theme contact forms
1870
+ * Added anti-spam protection for MyMail contact forms
1871
+ * Added anti-spam protection for MailPoet Newsletters
1872
+ * Some interface and functionality changes in backend
1873
+
1874
+ = 5.2 2015-04-01 =
1875
+ * Added link for anti-spam stats
1876
+ * Added WP User Frontend Pro registration form protection
1877
+
1878
+ = 5.1 2015-03-24 =
1879
+ * Fixed site crash after installing 5.0 on some websites
1880
+
1881
+ = 5.0 2015-03-24 =
1882
+ * Added bulk comments checking for spam via CleanTalk blacklists
1883
+ * Added anti-spam form protection for 'Ajax Login & Register'
1884
+ * Fixed JetPack form protection
1885
+
1886
+ = 4.24 2015-03-20 =
1887
+ * Added immediate spam protection activation.
1888
+
1889
+ = 4.22 2015-03-17 =
1890
+ * Added button for automatic spam protection key getting.
1891
+
1892
+ = 4.21 2015-03-11 =
1893
+ * Added license renew notification.
1894
+
1895
+ = 4.20 2015-03-03 =
1896
+ * Added German, Italian, Polish, Portuguese translations.
1897
+ * Minor code fixes.
1898
+
1899
+ = 4.19 2015-02-24 =
1900
+ * Increased keys lifetime for JS spam test.
1901
+
1902
+ = 4.18 2015-02-17 =
1903
+ * Fixed bug with comments approvement - moved ct_unmark_red() to cleantalk-admin.php
1904
+ * Added PayPal 'payment_status' in skip list.
1905
+ * Added Akismet 'spam' status processing.
1906
+
1907
+ = 4.17 2015-02-12 =
1908
+ * New base class.
1909
+ * Divided code to 3 separate files - common, public and admin.
1910
+
1911
+ = 4.16 2015-02-05 =
1912
+ * New base class.
1913
+ * Fixed JetPack spam filters logics.
1914
+ * Optimized Formidable, bbPress, BuddyPress spam filters.
1915
+
1916
+ = 4.15 2015-01-29 =
1917
+ * Support spam test for Contact Form 7 versions before 3.0.0.
1918
+ * Fixed global JS-vars for JS spam test.
1919
+ * Fixed online notice cookie logics.
1920
+ * Optimized spam filters for FSCF, WooCommerce, JetPack.
1921
+ * Optimized option getting.
1922
+
1923
+ = 4.14 2015-01-19 =
1924
+ * Removed deprecated option from comment approvement code.
1925
+ * New API key URL.
1926
+ * Trimmed API key in admin panel.
1927
+ * Added current options to array sended to CleanTalk servers.
1928
+ = 4.13 2014-12-29 =
1929
+ * Fixed bug with autimatically aprovement not spam comments. Now this option disabled and do not override local WordPress policy.
1930
+
1931
+ = 4.12 2014-12-29 =
1932
+ * Fixed bug with 'Wrong Access key...' notice in WordPress dashboard.
1933
+ * Fixed filtration bug in WordPress dashboard login form.
1934
+
1935
+ = 4.11 2014-12-22 =
1936
+ * Improved anti-spam protection for custom contact/registration/subscribe forms.
1937
+ * Improved anti-spam protection for comments.
1938
+ * Accelerated plugin speed for comments, regirstrations and contacts.
1939
+ * Added translation to French.
1940
+
1941
+ = 4.10 2014-12-10 =
1942
+ * Improved anti-spam protection for custom contact/registration/subscribe forms.
1943
+ * Option 'Custom contact forms' enabled by default for new setups.
1944
+ * Removed settings "Publish relevant comments", "Use encrypted (SSL) connection".
1945
+ * Added translation to Danish (thank you for Mikkel at KreativJul.dk).
1946
+
1947
+ = 4.9 2014-11-24 =
1948
+ * Fixed spam test for Contact Form 7.
1949
+
1950
+ = 4.8 2014-11-19 =
1951
+ * Improved anti-spam protection for BuddyPress registrations and custom contact forms.
1952
+
1953
+ = 4.7 2014-11-16 =
1954
+ * Fixed JavaScript spam test for FastSecure contact form.
1955
+
1956
+ = 4.6 2014-11-11 =
1957
+ * Improved anti-spam protection on BuddyPress registrations.
1958
+ * Improved anti-spam protection on contact forms.
1959
+ * Removed plugin sign from pending, spam comments. To get details about a comment please use Dashboard at cleantalk.org.
1960
+ * Improved Access key validation function.
1961
+ * Added protection for bbPress comments via stop list. Stop list function is a list to reject comments by prefiled words. To fill the list please use Dashboard at cleantalk.org.
1962
+
1963
+ = 4.5 2014-11-04 =
1964
+ * Fixed CF7 JavaScript bug.
1965
+ * Fixed rejects in bbPress guests comments.
1966
+
1967
+ = 4.4 2014-10-29 =
1968
+ * Improved anti-spam JS test for CF7.
1969
+ * Fixed 'noscript' text in FaceBook Like preview in Valenti theme.
1970
+
1971
+ = 4.2 2014-10-20 =
1972
+ * Fixed double checks issue for BuddyPress registrations.
1973
+ * Increased timeout limits to find the work server.
1974
+
1975
+ = 4.1 2014-10-13 =
1976
+ * Optimized code for manual moderation feedback sending.
1977
+ * Optimized anti-spam algorithms for comments, contacts and signups.
1978
+
1979
+ = 4.0 2014-10-06 =
1980
+ * Improved anti-spam protection for custom contact forms.
1981
+ * Improved anti-spam protection for registration forms.
1982
+
1983
+ = 3.9 2014-10-01 =
1984
+ * Did exception to do not break to create new user in WordPress backend.
1985
+
1986
+ = 3.8 2014-09-19 =
1987
+ * Fixed json_encode() + malformed characters.
1988
+ * Fixed JavaScript issue with wpautop().
1989
+
1990
+ = 3.6 2014-09-15 =
1991
+ * Fixed preg_match() issue for Formidable forms and Custom contact forms.
1992
+ * Improved anti-spam protection for Custom contact forms.
1993
+
1994
+ = 3.4 2014-09-04 =
1995
+ * We've added anti-spam for themes contact forms and any untested contact forms plugins. To use this test enable option "Custom contact forms" in plugin settings.
1996
+ * We've added auto rotation for spam comments. Now the plugin removes comments in SPAM folder older then 15 days. This option is enabled by default.
1997
+
1998
+ = 3.2 2014-08-27 =
1999
+ * Fixed submit_time() logic for failed submits (comments/registrations). Now form fill time resets after every failed submit.
2000
+
2001
+ = 3.1 2014-08-19 =
2002
+ * Added anti-spam test over senders Cookies.
2003
+ * Improved form fill anti-spam test.
2004
+ * Improved speed selection of the nearest server to website.
2005
+ * Improved anti-spam speed for comments.
2006
+ * Relevance anti-spam test disabled by default. To enable test should be used option 'relevance_test'.
2007
+
2008
+ = 2.58 2014-08-06 =
2009
+ * Added anti-spam protection for signups posted via WooCommerce order form.
2010
+ * Improved anti-spam protection for Contact Form 7.
2011
+ * Improved anti-spam protection for registrations. Now the plugin looking for JavaScript anti spam test results not only in POST array, but in COOKIES array too. This improvement allows protect signup forms for any untested signups plugins and themes.
2012
+ * Updated PHP API. Now the plugin can resolve sender IP for websites behind proxy servers. If the proxy servers uses private IP address.
2013
+
2014
+ = 2.57 2014-07-29 =
2015
+ * Improved anti-spam protection for comments. The plugin now proccessing website url in the comments form.
2016
+ * Fixed sign remove logic for approved comments. Previous version doesn't cut sign for comments approved via AJAX call in WordPress backend.
2017
+ * Fixed switching to SSL for comments. Previous version doesn't use secured connection for comments.
2018
+
2019
+ = 2.56 2014-07-21 =
2020
+ * Fixed account status check logic. Previous version makes unnecessary test API calls when the plugin asks account status check.
2021
+
2022
+ = 2.55 2014-07-11 =
2023
+ * Fixed bug with account status function. In backend the plugin showed notice 'Please don't forget to disable CAPTCHA if you have it!' on every page.
2024
+
2025
+ = 2.54 2014-07-11 =
2026
+ * Fixed signup anti-spam protection logic for BuddyPress registrations.
2027
+ * Fixed anti-spam protection for JetPack contact form.
2028
+ * Changed account status check logic.
2029
+
2030
+ = 2.53 2014-06-27 =
2031
+ * Fixed anit-spam protection bug for signups.
2032
+ * Changed anti-spam functions (comments and signups) priority.
2033
+
2034
+ = 2.52 2014-06-25 =
2035
+ * Fixed 'Fatal error: Call to a member function get_error_code()' issue with signups via BuddyPress.
2036
+
2037
+ = 2.51 2014-06-23 =
2038
+ * Added spam protection for registrations via plugin New User Approve by Josh Harrison. If the CleanTalk matched signup as spam this signup will be denied to placing in pending queue.
2039
+ * Added option "Use secure (SSL) connection to CleanTalk cloud". If the option enabled plugin will communicate with CleanTalk severs via 128bit encrypted data channel. So, if you have SSL protected webforms on website you can use this option to be sure that visitors personal data safely transmits to CleanTalk servers.
2040
+ * Fixed minor bug with loading backend functions.
2041
+
2042
+ = 2.49 2014-06-10 =
2043
+ * Added spam protection for S2Member Auth.net forms.
2044
+ * Added spam protection for multisite signup form.
2045
+ * Optimized account status check function.
2046
+
2047
+ = 2.46 2014-05-19 =
2048
+ * Added: HTML notice about the need to enable JavaScript.
2049
+ * Fixed: Fixed pingbacks anti-spam test.
2050
+
2051
+ = 2.44 2014-05-12 =
2052
+ * Added: Anti-spam protection for S2Member framework.
2053
+ * Improved: JavaScript anti-spam test.
2054
+ * Improved: Plugin load time for backend and frontend.
2055
+ * Fixed: PHP warning mb_convert_encoding()
2056
+
2057
+ = 2.42 2014-04-29 =
2058
+ * Fixed: JavaScript anti-spam test for comments.
2059
+
2060
+ = 2.40 2014-04-25 =
2061
+ * New: Fast Secure Contact form support.
2062
+ * New: WordPress Landing Pages support
2063
+
2064
+ = 2.38 2014-03-27 =
2065
+ * Fixed: Registraion form submit time spam test.
2066
+
2067
+ = 2.36 2014-03-12 =
2068
+ * Reversed to patches from old revisions.
2069
+
2070
+ = 2.35 2014-03-12 =
2071
+ * New: Notifications about disabled account
2072
+ * New: Improved JavaScript spam test.
2073
+ * Fixed: Code optimization
2074
+ * Fixed: JavaScript test for signups.
2075
+
2076
+ = 2.33 2014-02-12 =
2077
+ * Fixed: CURLOPT_FOLLOWLOCATION bug at admin notice
2078
+
2079
+ = 2.32 2014-02-04 =
2080
+ * New: Added notice about automatically approved comment. The notice shows only for first approved comment and only for new commentators (without approved comments) of the blog.
2081
+ * New: At WordPress console added banner for notices.
2082
+ * Changed: Screenshots updated.
2083
+
2084
+ = 2.31 2014-01-24 =
2085
+ * New: Added spam protection for JetPack comments
2086
+ * Fixed: cURL connection issue "Expect: 100-continue"
2087
+
2088
+ = 2.30 2014-01-13 =
2089
+ * Changed: Improved servers connection logic.
2090
+ * Fixed: Antispam test for Fomidable forms.
2091
+
2092
+ = 2.28 2013-12-19 =
2093
+ * New: Added protection against spam bots for WooCommerce review form.
2094
+ * Fixed: JavaScript anti-spam logic for WooCommerce review form.
2095
+
2096
+ = 2.27 2013-12-06 =
2097
+ * New: Added protection against spam bots for JetPack Contact form.
2098
+ * Fixed: JavaScript anti-spam logic for registrations and Contact form 7.
2099
+
2100
+ = 2.25 2013-11-27 =
2101
+ * New: Added protection against spam bots for BuddyPress registrations.
2102
+ * New: Added protection against spam bots for Contact form 7.
2103
+ * New: Added Spanish (es_ES) translation.
2104
+
2105
+ = 2.23 2013-11-20 =
2106
+ * New: Added automatic training blacklists on spam bot account deletion.
2107
+ * New: Added URL to project homepage at plugin options.
2108
+ * Changed: Improved anti-spam logic.
2109
+
2110
+ = 2.21 2013-11-13 =
2111
+ * Changed: WordPress blacklists settings get priority over plugin's anti-spam settings
2112
+ * Changed: Disabled management approval comments for regular commentators of the blog. Automatically approved for publication only the comments of the new blog authors.
2113
+ * Changed: Removed form submit time test. Imporved JavaScript spam test.
2114
+ * Changed: PHP code optimizations
2115
+
2116
+ = 2.19 2013-11-08 =
2117
+ * New: Antispam protection from spam bots at the registration form
2118
+ * Changed: Russian localization for admin panel
2119
+ * Changed: PHP code optimizations
2120
+
2121
+ = 2.5.18 2013-11-01 =
2122
+ * Fixed: Bug with selection of the last comments for post
2123
+ * New: Antispam protection for Formidable feedback forms
2124
+ * New: Automatic deletion of outdated spam comments
2125
+ * New: On/Off option for comments spam filtration
2126
+ * Tested with WordPress 3.7.1
2127
+
2128
+ = 2.4.15 2013-09-26 =
2129
+ * Fixed: Bug with mass comments deletion
2130
+ * Changed: Russian localization for admin panel
2131
+ * Tested with mulitsite setup (WordPress network or WPMU)
2132
+
2133
+ = 2.4.14 2013-08-29 =
2134
+ * Changed: Removed feedback requests to the servers for banned (spam) comments.
2135
+
2136
+ = 2.4.13 2013-08-19 =
2137
+ * Changed: Switched HTTP requests from file_get_contents() to CURL. Added file_get_contens() as backup connection to the servers.
2138
+ * Changed: Removed feedback requests for comments moved to trash.
2139
+ * Fixed: "Fail connect to servers..." error on hostings with disabled 'allow_url_fopen' PHP option.
2140
+
2141
+ = 2.4.12 2013-08-12 =
2142
+ * Removed RPC::XML library from plugin.
2143
+ * Switched plugin to HTTP+JSON connection with servers.
2144
+ * Fixed bug with comments anti-spam tests with non UTF8 codepage.
2145
+
2146
+ = 2.4.11 2013-08-02 =
2147
+ * Removed spam tests for self-made pingbacks
2148
+ * Tested up to WP 3.6
2149
+
2150
+ = 2.4.10 2013-07-24 =
2151
+ * Fixed warning in PHP 5.4
2152
+ * Fixed bug with disabling comments test for Administrators, Authors and Editors
2153
+ * "Stop words" settings moved to <a href="http://cleantalk.org/my">Control panel</a> of the service
2154
+ * "Response language" settings moved <a href="http://cleantalk.org/my">Control panel</a> of the service
2155
+
2156
+ = 2.4.9 =
2157
+ * Fixed extra debugging in base class
2158
+
2159
+ = 2.4.8 =
2160
+ * Enabled convertion to UTF8 for comment and example text
2161
+ * Optimized PHP code
2162
+
2163
+ = 2.3.8 =
2164
+ * Enabled selection the fastest server in the pool
2165
+ * Fixed work server in plugin's config
2166
+
2167
+ = 2.2.3 =
2168
+ * Secured md5 string for JavaScript test
2169
+ * Added requests's timestamp to calculate request work time
2170
+ * Update base CleanTalk's PHP class
2171
+
2172
+ = 2.1.2 =
2173
+ * Improved perfomance for processing large comments (over 32kb size)
2174
+ * Improved perfomance for bulk operations with comments in Comments panel
2175
+ * Added feedback request with URL to approved comment
2176
+
2177
+ = 2.0.2 =
2178
+ * Fixed bug with JavaScript test and WordPress cache plugins
2179
+
2180
+ = 2.0.1 =
2181
+ * Added option "Publicate relevant comments" to plugin's options.
2182
+ * Added descriptions to plugin options
2183
+
2184
+ = 1.5.4 =
2185
+ * Fixed HTTP_REFERER transmission to the servers
2186
+ * Improved JavaScript spam test
2187
+ * Optimized PHP code
2188
+
2189
+ = 1.4.4 =
2190
+ * Pingback, trackback comments has moved to manual moderataion
2191
+ * Added transmission to the serves comment type and URL
2192
+ * Post title, body and comments separated into individual data elements
2193
+ * Added priority for matched words in the comment with post title
2194
+ * Enabled stop words filtration as default option
2195
+
2196
+ = 1.3.4 =
2197
+ * Removed PHP debugging.
2198
+
2199
+ = 1.3.3 =
2200
+ * Added notice at admin panel about empty Access key in plugin settings
2201
+ * Removed HTTP link to the site project from post page
2202
+ * Removed unused options from settings page
2203
+ * Tested up to WordPress 3.5
2204
+
2205
+ = 1.2.3 =
2206
+ * Fixed bug with session_start.
2207
+
2208
+ = 1.2.2 =
2209
+ * Plugin rename to CleanTalk. Spam prevent plugin
2210
+ * Integration Base Class version 0.7
2211
+ * Added fast submit check
2212
+ * Added check website in form
2213
+ * Added feedbacks for change comment status (Not spam, unapprove)
2214
+ * Added function move comment in spam folder if CleanTalk say is spam
2215
+ * Disable checking for user groups Administrator, Author, Editor
2216
+ * Marked red color bad words
2217
+
2218
+ = 1.1.2 =
2219
+ * Addition: Title of the post attached to the example text in auto publication tool.
2220
+ * Tested with WordPress 3.4.1.
2221
+
2222
+ = 1.1.1 =
2223
+ * HTTP_REFERER bug fixed
2224
+
2225
+ = 1.1.1 =
2226
+ * Added user locale support, tested up to WP 3.4
2227
+
2228
+ = 1.1.0 =
2229
+ * First version
2230
+
2231
+ == Upgrade Notice ==
2232
+ = 5.130 November 14 2019 =
2233
+ * Fix: JetPack contact form JS check.
2234
+ * FIx: Iphorm AJAX form.
2235
+ * Fix: Paid Memberships Pro fix.
2236
+ * Fix: Divi theme contact form fix.
2237
+ * Integration: Paid Memberships Pro.
2238
+ * Integration: Elementor Pro page builder forms.
2239
+ * Improved: Compatibility with different server.
2240
+
2241
+ = 5.129.1 November 5 2019 =
2242
+ * Fix: WooCommerce order detecting.
2243
+
2244
+ = 5.129 October 30 2019 =
2245
+ * Upd: Localize updated.
2246
+ * Fix: Direct $_SERVER access replaced.
2247
+ * Integration: The 7 theme contact form.
2248
+ * Fix: Minor improvements and bug fixes.
2249
+ * Mod: Putting site in maintenance mode during plugin update.
2250
+
2251
+ = 5.128.1 October 23 2019 =
2252
+ * Fix: Fatal error when using buffer output.
2253
+ * Fix: Translate domain for errors.
2254
+ * Code: Fix spelling in function name.
2255
+ * Fix: JS disabled error.
2256
+ * Upd: Comment edit screen updated.
2257
+ * Fix: Cleantalk\Arr::search() fixed.
2258
+
2259
+ = 5.128 October 17 2019 =
2260
+ * Mod: Users check - functionality updated.
2261
+ * Fix: Users check - dates format updated.
2262
+ * Mod: Comments check - functionality updated.
2263
+ * Fix: Comments check - dates format updated.
2264
+ * Fix: Fields exclusion fixed.
2265
+ * Fix: Notice fixed.
2266
+ * Fix: Cleantalk/Antispam/API.
2267
+ * Fix: Minor improvements and bug fixes.
2268
+
2269
+ = 5.127.4 October 13 2019 =
2270
+ * Mod: Automatically decrease amount of checked users by one request if an error occurs.
2271
+ * Fix: Security issue.
2272
+ * Fix: Static JS key.
2273
+
2274
+ = 5.127.3 October 8 2019 =
2275
+ * Fix: Errors during registration.
2276
+
2277
+ = 5.127.2 October 8 2019 =
2278
+ * Integration: SeedProd Coming Soon Page Pro.
2279
+ * Fix: WooCommerce double reuqests.
2280
+ * Fix: Static JS key.
2281
+
2282
+ = 5.127.1 October 7 2019 =
2283
+ * Fix: WPMS settings logic.
2284
+ * Using default database storage engine for tables.
2285
+
2286
+ = 5.127 September 30 2019 =
2287
+ * Fix: Delete redirect notice on external forms
2288
+ * Fix: Storing spam for 15 days.
2289
+ * Fix: correct DiVi display message.
2290
+ * Integration: Ultimate Members.
2291
+ * Mod: Setting "Use static JS key" switched to "Auto" if it was "No". Default is "Auto".
2292
+ * Mod: Moving White Label option to main site settings.
2293
+ * New: Use static JS key if cache plugin detected.
2294
+ * New: Settings for URLs, fields, roles exclusions.
2295
+ * New: Regular Expressions support in URLs, fields exclusions.
2296
+ * New: Send validation errors on standard registration form.
2297
+ * Updater: Move exclusions from global variable to settings.
2298
+ * Deprecated: IP exclusions.
2299
+
2300
+ = 5.126 September 9 2019 =
2301
+ * Spam protection improved!
2302
+ * Integration: Option wheel.
2303
+ * Mod: Improved Email detection.
2304
+ * Mod: Improved IP detection.
2305
+ * Fix: Too large database table with alternative sessions.
2306
+ * Fix: Exception for WooCommerce AJAX.
2307
+ * Fix: API key validation.
2308
+ * Minor fixes.
2309
+
2310
+ = 5.125 August 26 2019 =
2311
+ * Fix: PHP Notices.
2312
+ * Fix: Auto update.
2313
+ * Fix: Displaying protection status for IP license.
2314
+ * Fix: prevent capturing buffer for XMLRPC requests (check_external functionality).
2315
+ * Fix: API key validating.
2316
+ * New: Complete deactivation setting.
2317
+
2318
+ = 5.124.1 August 8 2019 =
2319
+ * Fix: Error on PHP 5.3.
2320
+
2321
+ = 5.124 August 8 2019 =
2322
+ * Spam protection improved.
2323
+ * Fix: SpamFireWall local database counter on Multisite.
2324
+ * Fix: Caldera Forms integration.
2325
+ * Fix: Settings "Use AJAX for JS check" description.
2326
+ * Fix: Formidable integration.
2327
+ * New: External forms check now independed from JavaScript.
2328
+ * New: Setting Protect external - capture buffer.
2329
+ * New: QuForm integration.
2330
+
2331
+ = 5.123 July 25 2019 =
2332
+ * Fix: Plenty of minor fixes.
2333
+ * Fix: wpDiscuz integration.
2334
+ * Fix: Integration with bbPress.
2335
+ * Fix: New comment email notification.
2336
+ * New: Follow-Up Emails integration.
2337
+ * Fix: Woocommerce integration.
2338
+ * Fix: Spelling.
2339
+
2340
+ = 5.122 July 10 2019 =
2341
+ * Spam Protection improved.
2342
+ * Fix: Error while checking account status.
2343
+ * Fix: Conflict with Elementor Pro.
2344
+ * Fix: Integration with Ninja Forms.
2345
+ * Fix: Integration with Formidable.
2346
+ * New: Detecting mobile devices.
2347
+ * New: Integration for Easy Forms for Mailchimp.
2348
+
2349
+ = 5.121 June 26 2019 =
2350
+ * Fix: Translation typos.
2351
+ * Fix: Woocommerce integration.
2352
+ * Fix: Catching admin in AJAX queries.
2353
+ * Mod: Session table (cleantalk_sessions) issue.
2354
+ * Mod: Spam protection improved.
2355
+ * Integration: Wilcity theme custom registration validation enabled
2356
+ * New: Option "Use static JS key".
2357
+
2358
+ = 5.120.2 June 17 2019 =
2359
+ * Fix: WPForms integration.
2360
+ * Fix: Translation and spelling.
2361
+ * Fix: Minor PHP error
2362
+
2363
+ = 5.120.1 June 6 2019 =
2364
+ * Mod: Description for Search form protection.
2365
+ * Fix: CSS and JS attachment.
2366
+ * Fix: Undefined index error.
2367
+
2368
+ = 5.120 June 5 2019 =
2369
+ * Fix: bbPress false positives.
2370
+ * Fix: SpamFireWall check condition.
2371
+ * Fix: SpamFireWall block page.
2372
+ * Fix: Catch admin action via search form test.
2373
+ * Fix: Catch admin action (AJAX).
2374
+ * Mod: Using minified version of JS and CSS.
2375
+ * Mod: Date format in statistics.
2376
+
2377
+
2378
+ = 5.119.1 May 30 2019 =
2379
+ * Fix: Helper class error.
2380
+
2381
+ = 5.119 May 30 2019 =
2382
+ * Fix: No more second request after registration.
2383
+ * Fix: Activation hook.
2384
+ * Fix: Alternative sessions. Clear table.
2385
+ * Fix: Stop capchuring AJAX requests in admin area.
2386
+ * Fix: Spelling.
2387
+ * Fix: Registration cookies set.
2388
+ * Mod: SFW exdtended die page when testing.
2389
+ * Mod: User-agent modified.
2390
+ * New: Test search queries for spam.
2391
+ * New: Gathering and output statistics.
2392
+
2393
+ = 5.118.4 May 13 2019 =
2394
+ * Fix: SFW cookie. Set correct domain for subdomains.
2395
+ * Fix: SFW update.
2396
+ * Fix: IP detection.
2397
+ * Fix: Triggering AJAX check in backend.
2398
+ * Fix: Zero submit time on few forms.
2399
+
2400
+ = 5.118.3 April 29 2019 =
2401
+ * Fix: Spam statistics in dashboard widget.
2402
+ * Fix: IP detection.
2403
+ * Fix: Double check AJAX integrated forms like Ninja Forms.
2404
+ * Fix: Use url exclusions for AJAX forms.
2405
+
2406
+ = 5.118.2 April 25 2019 =
2407
+ * Mod: Spam filtration quality improved.
2408
+ * Mod: Store SFW cookie for 30 days.
2409
+ * Mod: Server IP added to connection report.
2410
+ * Fix: spam_stat is not defined.
2411
+
2412
+ = 5.118.1 April 19 2019 =
2413
+ * Fix: Fatal error.
2414
+ * Mod: Spam protection improved on registrations.
2415
+
2416
+ = 5.118 April 19 2019 =
2417
+ * Fix: Cookies on registration page.
2418
+ * Fix: Update fix.
2419
+ * Fix: Wordpress built-in API.
2420
+ * Fix: WooCommerce checkout form.
2421
+ * Fix: UpdraftPlus. Saving settings.
2422
+ * Fix: Convert Pro saving settings.
2423
+ * Fix: UTF-8 Converting.
2424
+ * Fix: GDPR notice.
2425
+ * Fix: cleantalk_sessions table size reduced.
2426
+ * Mod: Localization.
2427
+ * Mod: Performance improved.
2428
+ * Mod: SpamFierWall improvments.
2429
+ * Mod: IP detection improved.
2430
+ * Mod: JavaScript check rewised.
2431
+ * New: Setting "Use alternative mechanism for cookies".
2432
+
2433
+ = 5.117.1 April 5 2019 =
2434
+ * Fix: GDPR notice.
2435
+ * Fix: noCacheJS localization.
2436
+ * Fix: Fatal error when updating.
2437
+
2438
+ = 5.117 March 27 2019 =
2439
+ * New: Update logic runs on all pages.
2440
+ * New: Integration for Ajax Contact Forms plugin.
2441
+ * New: Notification for users groups about new comments.
2442
+ * New: SFW die page. Show browser and page creation time.
2443
+ * Fix: Huge bug in Cleantalk.php connected with servers changing.
2444
+ * Fix: Check AJAX requests for logged in users.
2445
+ * Fix: Deleting debug in JS.
2446
+ * Fix: Validating settings before saving.
2447
+
2448
+ = 5.116.3 March 14 2019 =
2449
+ * Fix: "Headers already sent" error.
2450
+ * Fix: Images paths.
2451
+ * Fix: IP detection.
2452
+ * Fix: Skip lost password form check
2453
+ * Fix: Skip mobile requests (push settings)
2454
+ * Fix: PHP notice when detecting BuddyPress template.
2455
+
2456
+ = 5.116.2 March 7 2019 =
2457
+ * Fix: Creating tables in MariaDB.
2458
+
2459
+ = 5.116.1 March 6 2019 =
2460
+ * Fix: Creating tables in DB.
2461
+ * Fix: PHP Warning in spam statistics widget.
2462
+
2463
+ = 5.116 March 6 2019 =
2464
+ * Spam filtration quality improved.
2465
+ * New: Storing visited URLs.
2466
+ * New: Check before validation Contact Form 7, Comments, Jetpack comments.
2467
+ * New: Get validation result for Contact Form 7, Comments, Jetpack comments.
2468
+ * Fix: ES add subscriber.
2469
+ * Fix: IP detection.
2470
+
2471
+ = 5.115.2 February 27 2019 =
2472
+ * Fix: False positives spam detection in WP Forms and Contact Form 7.
2473
+
2474
+ = 5.115.1 February 16 2019 =
2475
+ * Fix: SpamFireWall's false positives.
2476
+
2477
+ = 5.115 February 14 2019 =
2478
+ * Fix: Http_only flag for backend cookies.
2479
+ * Fix: Spam filtration improved.
2480
+ * New: IP detection improved.
2481
+ * Fix: SpamFirewall update speeded up.
2482
+ * New: False positives with caching solutions decreased.
2483
+ * New: Opportunity to use Wordpress HTTP API to connect with Cloud.
2484
+
2485
+ = 5.114 January 31 2019 =
2486
+ * New: Setting "Use Wordpress HTTP API" as alternative to CURL. Disabled by default.
2487
+ * Fix: Formidable: Adding small JS check when adding JS_key.
2488
+ * Mod: layout of settings page.
2489
+ * Mod: Banner logic altered.
2490
+
2491
+ = 5.113.2 January 18 2019 =
2492
+ * Fix: "Settings" link returns to plugin page.
2493
+
2494
+ = 5.113.1 January 17 2019 =
2495
+ * Fix: Conflict with CityTours theme.
2496
+ * Fix: Error for Wordperss lower 4.7.
2497
+ * Add: Spam protection: "Validate email for existance".
2498
+
2499
+ = 5.113 January 16 2019 =
2500
+ * Fix: Fast and Simple Contact Form.
2501
+ * Fix: Settings layout.
2502
+ * Fix: Error with WooCommerce Quickview.
2503
+ * Fix: Bitrix24 contact form.
2504
+ * Fix: Request time decreased.
2505
+ * Fix: Requesting account status when activating for IP licenses.
2506
+ * Add: Precise AJAX request detection.
2507
+ * Spam protection improved.
2508
+
2509
+ = 5.112 December 21 2018 =
2510
+ * Fix: Woocommerce AJAX checkout form.
2511
+ * Fix: Profile Builder Pro.
2512
+ * Fix: DB structure improvements for WPMS.
2513
+ * Spam filtering quality improved.
2514
+ * Minor fixes.
2515
+
2516
+ = 5.111 December 13 2018 =
2517
+ * Fix: Double request in JetPack contact form.
2518
+ * Fix: Email notification about spam registration.
2519
+ * Fix: Links button for feedback comments.
2520
+ * Fix: Mail notification about plugin error.
2521
+ * Fix: Key field output.
2522
+ * Minor fixes.
2523
+
2524
+ = 5.110 November 29 2018 =
2525
+ * Integration: BuddyPress ActivityWall spam protection.
2526
+ * Add: Support different BuddyPress templates on activity wall.
2527
+ * Fix: Admin/moderator checking for validate post data.
2528
+ * Add: GDPR setting for shortcode.
2529
+ * Fix: Increase timeout for spam_check_cms to 15.
2530
+
2531
+ = 5.109 November 15 2018 =
2532
+ * Fix: Added URL and IP exclusions to Contact Form 7.
2533
+ * Fix: js error when responseText is not exists
2534
+ * Fix: Sitename when getting key automatically under WPMS.
2535
+ * Mod: SpamFireWall is now fully compatible with WPMS.
2536
+ * Mod: Setting 'Tell others about CleanTalk' was deleted.
2537
+ * Mod: Protection from spam improved.
2538
+
2539
+ = 5.108.1 November 8 2018 =
2540
+ * Fix: Errors with integration class.
2541
+
2542
+ = 5.108 November 7 2018 =
2543
+ * Fix: White label mode.
2544
+ * Fix: SpamFireWall now can be disabled.
2545
+ * Fix: Layout.
2546
+ * Integration: WPForms.
2547
+ * Add: Message about block for all no integrated AJAX forms.
2548
+ * Add: Displaying account name near api key.
2549
+
2550
+ = 5.107 October 29 2018 =
2551
+ * Fix: Ninja Forms integration.
2552
+ * Fix: Cookie usage.
2553
+ * Add: Capturing AJAX responses from non integrated forms.
2554
+ * Spam protection improved.
2555
+ * Minor fixes.
2556
+
2557
+ = 5.106 October 11 2018 =
2558
+ * Spam filtration improved.
2559
+ * New: White Label mode.
2560
+ * Modification: Warning message about test on SpamFireWall die page.
2561
+ * Integration: WP Maintenance Mode.
2562
+ * Fix: S2Member.
2563
+ * Fix: JavaScript attachments reconsidered.
2564
+ * Fix: Admin banners layout.
2565
+ * Fix: Minor layout fixes.
2566
+
2567
+ = 5.105 September 26 2018 =
2568
+ * Integration: Now bloking spam for QAEngine questions.
2569
+ * Fix: Async http__request call.
2570
+ * Fix: Unnecessary get_antispam_report_breif method call.
2571
+ * Layout: Hide "Do you like Cleantlak?" when key is not ok.
2572
+ * Layout: Minor fixes.
2573
+
2574
+ = 5.104 September 18 2018 =
2575
+ * Fix: Error when saving settings.
2576
+ * Fix: Trying update plugin plugin for the first installation.
2577
+ * Fix: Update system.
2578
+ * Fix: Errors output.
2579
+ * Fix: Plugin's settings under WPMS.
2580
+ * Fix: SpamFireWall update.
2581
+ * Fix: The server change system repaired.
2582
+ * Mod: Cron saving tasks improved.
2583
+
2584
+ = 5.103.1 September 14 2018 =
2585
+ * Fix: Error when saving settings.
2586
+ * Fix: Error when getting key automatically.
2587
+
2588
+ = 5.103 September 13 2018 =
2589
+ * Fix: Gravity Forms response message.
2590
+ * Fix: SpamFireWall redirect to 404 page.
2591
+ * Major anti-spam plugin improvement.
2592
+ * Recombined setting page.
2593
+ * Added error notification.
2594
+ * Mod: S2 Members integration.
2595
+ * Mod: Improved remote calls.
2596
+
2597
+ = 5.102 August 29 2018 =
2598
+ * Fix: Users and comments check.
2599
+ * Fix: Update from 5.70 or previous versions.
2600
+ * Fix: GDPR public JS-script.
2601
+ * Fix: Dashboard widget JS scripts attachment.
2602
+ * Fix: WooCommerce "Place order" action.
2603
+ * Mod: Notification logic altered.
2604
+ * Mod: Users check table now has 'Signed up' column.
2605
+ * Minor fixes.
2606
+
2607
+ = 5.101 August 10 2018 =
2608
+ * Fix: Set cookie only for non-dashboard pages.
2609
+ * Fix: Dashboard widget JS error.
2610
+ * Fix: JavaScript error for some environment.
2611
+ * Mod: Antispam protection accelerated for some pages.
2612
+
2613
+ = 5.100 July 30 2018 =
2614
+ * Fix: JavaScript dependencies.
2615
+
2616
+ = 5.99.1 July 17 2018 =
2617
+ * IP detection fixed and improved.
2618
+
2619
+ = 5.99 July 10 2018 =
2620
+ * Fix: WooCommerce false positives.
2621
+ * Fix: SpamFireWall IP detection.
2622
+ * Minor fixes.
2623
+
2624
+ = 5.98 June 27 2018 =
2625
+ * Fix: WooCommerce: Exclusion.
2626
+ * Fix: Public GDPR JS code.
2627
+ * Minor fixes.
2628
+
2629
+ = 5.97 June 7 2018 =
2630
+ * Fix: Update system.
2631
+ * Fix: Feedback from public page (admin only).
2632
+ * Fix: Users and comment check: API error.
2633
+ * Fix: Too many negative reports. (Too big ct_data option)
2634
+ * Fix: SpamFireWall: Infinite redirection on the blocking page.
2635
+ * Minor fixes.
2636
+
2637
+ = 5.96 May 22 2018 =
2638
+ * Fix: Update system.
2639
+ * Mod: Reset all counters button in admin bar.
2640
+ * Mod: GDPR compliance.
2641
+ * Minor fixes.
2642
+
2643
+ = 5.95.1 May 3 2018 =
2644
+ * Fix: "Get key automatically" button display logic.
2645
+ * Fix: PHP notices.
2646
+
2647
+ = 5.95 May 2 2018 =
2648
+ * Spam filtration improved.
2649
+ * Fix: Public widget layout.
2650
+ * Fix: Connection reports output.
2651
+ * Minor fixes.
2652
+
2653
+ = 5.94 April 23 2018 =
2654
+ * Mod: Async load option for JS.
2655
+ * Mod: JS scripts loading is conditional.
2656
+ * Fix: IP detection.
2657
+ * Fix: IP detection.
2658
+ * Fix: Javascript error.
2659
+
2660
+ = 5.93.1 April 9 2018 =
2661
+ * Fix: Fatal error on PHP 5.5 or lower.
2662
+
2663
+ = 5.93 April 9 2018 =
2664
+ * Fix: SpamFirewall IP detection.
2665
+ * Fix: Contact Form 7. False positives.
2666
+ * Mod: Autoupdate function improved.
2667
+ * Minor fixes.
2668
+
2669
+ = 5.92.2 March 23 2018 =
2670
+ * Fix: Error if cURL extension is disabled.
2671
+
2672
+ = 5.92.1 March 23 2018 =
2673
+ * Fix: Spelling
2674
+ * Fix: Fatal error if cURL extension is disabled.
2675
+
2676
+ = 5.92 March 22 2018 =
2677
+ * IP detection improved.
2678
+ * Fix: SSL connection.
2679
+ * Fix: False positives spam detection in Contact Form 7.
2680
+ * Minor fixes.
2681
+
2682
+ = 5.91 March 15 2018 =
2683
+ * Fix: Errors for PHP compiled without XML support.
2684
+ * Fix: Spelling and translation.
2685
+ * Stability increased.
2686
+ * Minor fixes.
2687
+
2688
+ = 5.90 March 7 2018 =
2689
+ * Improvement: Better IP recognition in Spam FireWall.
2690
+ * Fix: Gravity Froms blocking message.
2691
+ * Security improvments.
2692
+ * Minor fixes.
2693
+
2694
+ = 5.89 February 21 2018 =
2695
+ * Improved spam filtration quality.
2696
+ * Improved compatibility.
2697
+ * Public widget: Styles and referral link added.
2698
+ * Dashboard widget: revised and fixed.
2699
+ * Minor fixes.
2700
+
2701
+ = 5.88 February 12 2018 =
2702
+ * Integration: ConvertPro.
2703
+ * Improvement: Search for visitor's names in request.
2704
+ * Fix: Contact Form 7 message recognition.
2705
+ * Preparation for the remote plugin update.
2706
+ * Minor fixes.
2707
+
2708
+ = 5.87 February 2 2018 =
2709
+ * Filtration quality improved.
2710
+ * Fix: WP Foto Vote downloading images.
2711
+ * Fix: Fatal error for unsupported PHP 5.2.
2712
+ * Fix: Formidable Forms improved spam filtration.
2713
+
2714
+ = 5.86 January 25 2018 =
2715
+ * Fix: High CPU load with wp-ajax.php.
2716
+ * Fix: Mailpoet: Newsletter.
2717
+ * Fix: Gravity: Forms standardization for input fields.
2718
+ * Fix: ajax hook checks data for contact form.
2719
+ * Fix: UTF8 character in requests.
2720
+
2721
+ = 5.85 January 11 2018 =
2722
+ * Fix: Fast Secure contact form spam block message.
2723
+ * Fix: IP license status.
2724
+ * Layout: Dashboard widget description altered.
2725
+
2726
+ = 5.84 December 26 2017 =
2727
+ * Integration: PeepSo contact form
2728
+ * Repared: Feedback from comments page.
2729
+ * Fix: mb_* functions used only if exists.
2730
+ * Fix: Gravity forms: Multi-page form logic repared.
2731
+ * Fix: Gravity forms: AJAX form logic repared.
2732
+ * Minor fixes.
2733
+
2734
+ = 5.83.2 December 19 2017 =
2735
+ * Fix: Error in base class.
2736
+
2737
+ = 5.83.1 December 19 2017 =
2738
+ * Fix: CDN IP detection.
2739
+
2740
+ = 5.83 December 19 2017 =
2741
+ * Improving: Stability and compatibility.
2742
+ * Improving: Spam protection.
2743
+ * Fix: Comments logic filtration.
2744
+ * Fix: Admin bar counter.
2745
+ * Minor errors fixes.
2746
+
2747
+ = 5.82.1 December 7 2017 =
2748
+ * Fixed minor error with attaching JS and CSS files.
2749
+
2750
+ = 5.82 December 4 2017 =
2751
+ * Plugin doesn't use PHP sessions anymore.
2752
+ * Bug fixes.
2753
+ * Improved update logic.
2754
+
2755
+ = 5.81 November 22 2017 =
2756
+ * Fixed error with "Show/Hide key" button.
2757
+ * Slightly improved spam protection for all forms.
2758
+ * Small errors fixes.
2759
+
2760
+ = 5.80 November 3 2017 =
2761
+ * Spam protection improved.
2762
+ * Improved filtration quality for WooCommerce checkout.
2763
+ * Minor fixes for Spam FireWall.
2764
+
2765
+ = 5.79 October 26 2017 =
2766
+ * Spam protection improved.
2767
+ * Fixed issue with existing spam comments check.
2768
+ * Added posibility to exclude IP from check.
2769
+ * Minor fixes.
2770
+
2771
+ = 5.78 October 16 2017 =
2772
+ * Improved compatibility with themes. Changed core functions prefix.
2773
+ * Fixed issue with WooCommerce checkout.
2774
+ * Spam protection improved.
2775
+ * Minor fixes.
2776
+
2777
+ = 5.77 October 2 2017 =
2778
+ * Connection report's system.
2779
+ * Integration for CouponXXL Theme.
2780
+ * Fixed issue with mb_* functions.
2781
+ * Banners logic updated.
2782
+
2783
+ = 5.76 September 20 2017 =
2784
+ * Fixed issue with Spam FireWall and caching plugins.
2785
+ * Banners logic updated.
2786
+
2787
+ = 5.75 September 15 2017 =
2788
+ * Pause feature for users/comments spam check.
2789
+ * Improved protection from spam.
2790
+ * Small fixes.
2791
+
2792
+ = 5.74.2 September 2 2017 =
2793
+ * Fix for users spam check for PHP 5.3 and lower.
2794
+
2795
+ = 5.74.1 September 2 2017 =
2796
+ * Fix for the update system and cloud communication.
2797
+ * Added possibility to check users and comments for spam with a specific date range.
2798
+
2799
+ = 5.74 August 31 2017 =
2800
+ * Users and comments spam check: Two check types (fast and accurate).
2801
+ * Fix for WooCommerce checkout test.
2802
+ * Minor fixes.
2803
+
2804
+ = 5.73 August 11 2017 =
2805
+ * Fix for spam check for already existed users and comments.
2806
+ * Spam FireWall updated.
2807
+ * Layout fix for BT Comments.
2808
+ * Minor fixes.
2809
+
2810
+ = 5.72 July 27 2017 =
2811
+ * Improved spam check for existed users and comments.
2812
+ * Minor fixes.
2813
+
2814
+ = 5.71 July 20 2017 =
2815
+ * Improved spam protection for external forms.
2816
+ * Optimization.
2817
+ * Minor fixes.
2818
+
2819
+ = 5.70.2 July 17 2017 =
2820
+ * Fix for Spam FireWall for Multisite.
2821
+
2822
+ = 5.70.1 July 17 2017 =
2823
+ * Fix for Spam FireWall.
2824
+ * Spam detection improved.
2825
+
2826
+ = 5.70 July 13 2017 =
2827
+ * New updater logic.
2828
+ * Self cron system.
2829
+ * Improved AMP compatibility.
2830
+ * Optimization.
2831
+ * Fixed users and comments spam check.
2832
+ * Fixed layout for Comment's feedback from public page.
2833
+ * Updated Spam FireWall.
2834
+ * SFW: Spam FireWall counter now work in real-time.
2835
+ * SFW: Improved compatibility with different Data Bases.
2836
+
2837
+ = 5.69 July 3 2017 =
2838
+ * Reviewer - integration.
2839
+ * Optimization for Users and Comments check for big databases.
2840
+ * Errors fixes.
2841
+ * Improved protection from spam.
2842
+
2843
+ = 5.68 June 22 2017 =
2844
+ * Contact Form for WordPress - Ultimate Form Builder Lite - integration.
2845
+ * Contact Bank - Contact Forms Builder - integration.
2846
+ * Smart Forms - integration.
2847
+ * cformsII - integration.
2848
+ * Contact Form by Web-Settler - integration.
2849
+ * Error fixes.
2850
+
2851
+ = 5.67.3 June 9 2017 =
2852
+ * Fixed JS attachment error.
2853
+
2854
+ = 5.67.2 June 5 2017 =
2855
+ * Fixed error with IP determination.
2856
+
2857
+ = 5.67.1 June 4 2017 =
2858
+ * Fixed JS error in 5.67 version.
2859
+ * Integrations: Enfold theme, Convertplug.
2860
+ * Links to check for Emails/IP for spam.
2861
+ * Control comments and feedback about them from public post's page.
2862
+ * Improved connection stability with cloud service.
2863
+ * Spam protection improved.
2864
+ * Other small fixes.
2865
+
2866
+ = 5.67 June 1 2017 =
2867
+ * Integrations: Enfold theme, Convertplug.
2868
+ * Links to check for Emails/IP for spam.
2869
+ * Control comments and feedback about them from public post's page.
2870
+ * Improved connection stability with cloud service.
2871
+ * Spam protection improved.
2872
+ * Other small fixes.
2873
+
2874
+ = 5.66 May 23 2017 =
2875
+ * Spam protection improved.
2876
+ * Major fixes for users and comments spam check.
2877
+ * Added feedback from Wordpress comments list.
2878
+ * Fix for "internal forms check" option.
2879
+ * Fixed issue with caching Spam FireWall die page.
2880
+ * Other small fixes.
2881
+
2882
+ = 5.65 May 16 2017 =
2883
+ * Fix for PayPal redirecton.
2884
+ * Fixed issue with empty query for bulk comments test.
2885
+ * Added protection for Enfold contact form.
2886
+ * Ninja forms integration.
2887
+
2888
+ = 5.64 April 26 2017 =
2889
+ * Integration for Facebook registrations.
2890
+ * Small fixes for WPMS.
2891
+ * Fix for Activecampaign service.
2892
+ * Fix for check spam users.
2893
+ * Fixed rare notice Notice: Undefined index: REQUEST_URI
2894
+
2895
+ = 5.63 April 20 2017 =
2896
+ * Fix for the dashboard spam stat widget.
2897
+ * Added translation posibility for all text.
2898
+
2899
+ = 5.62 April 17 2017 =
2900
+ * Fix for the dashboard spam statistics widget.
2901
+ * Fix for users spam check.
2902
+ * Small appearance changes.
2903
+
2904
+ = 5.61 April 6 2017 =
2905
+ * Improved filtration.
2906
+ * Additional logic for the form recognizing.
2907
+ * Integration: Divi Theme Contact Form.
2908
+ * Fix: Gravity Forms multipages forms.
2909
+ * Stat Widget: Minor fixes.
2910
+ * Added possibility to download results of the users check in CSV format.
2911
+ * Alteration for settings page (footer).
2912
+
2913
+ = 5.60.1 March 29 2017 =
2914
+ * Fixed error function 'locale_get_display_region' no exists.
2915
+
2916
+ = 5.60 March 29 2017 =
2917
+ * Added main dashboard widget with spam sctivity stats.
2918
+ * Mailster - integration.
2919
+ * Base class updated.
2920
+
2921
+ = 5.59 March 24 2017 =
2922
+ * Users/comments check fix.
2923
+ * Plugin's name changed to Anti-Spam by CleanTalk.
2924
+ * Trial banner is dismissable. Disapear for 24h or till logout.
2925
+ * Settings modified (Auto testing failed warning).
2926
+ * Mailing(inactive key) interval increased to 6 hours.
2927
+
2928
+ = 5.58.6 March 16 2017 =
2929
+ * Fix for Ninja forms (protection updated).
2930
+ * Fix for QA Theme.
2931
+ * Fix for RSVP form.
2932
+ * Setting changes (Spam FireWall).
2933
+ * Improved debug section.
2934
+ * Improved gathering data function.
2935
+ * Minor fixes.
2936
+
2937
+ = 5.58.5 March 6 2017 =
2938
+ * Minor backend fix.
2939
+
2940
+ = 5.58.4 March 6 2017 =
2941
+ * Users check fix (redirect after the check).
2942
+ * Fixed PHP Notice "HTTP_REFERER" is unset.
2943
+ * Updated Notice logic.
2944
+
2945
+ = 5.58.3 February 28 2017 =
2946
+ * Bitrix24 Contact form integration.
2947
+ * Users/comments check fix.
2948
+ * Spam sorting updated.
2949
+ * Banner showing logic.
2950
+
2951
+ = 5.58.2 February 17 2017 =
2952
+ * Cron fix for daily report.
2953
+
2954
+ = 5.58.1 February 16 2017 =
2955
+ * Minor fixes.
2956
+
2957
+ = 5.58 February 15 2017 =
2958
+ * Work without access key
2959
+ * Bitrix24 contact integration
2960
+ * Issues fixes
2961
+
2962
+ = 5.57.1 February 8 2017 =
2963
+ * Fix for notice logic.
2964
+
2965
+ = 5.57 February 8 2017 =
2966
+ * Setting page changes.
2967
+ * Bug fixes for WooCommerce.
2968
+ * Spam FireWall filters only GET requests.
2969
+ * Optimization.
2970
+ * Minor and major fixes.
2971
+
2972
+ = 5.56.1 January 25 2017 =
2973
+ * Minor fixes
2974
+
2975
+ = 5.56 January 19 2017 =
2976
+ * Integrations: MailChimp Premium, Profile Press.
2977
+ * Changes comments flow.
2978
+ * FireWall updater fix.
2979
+ * Users check optimization.
2980
+
2981
+ = 5.55 December 23 2016 =
2982
+ * Integrations: Caldera Forms, Visual Form Builder.
2983
+ * Fix for different 'cookies' header names.
2984
+ * Fixed user deletion.
2985
+
2986
+ = 5.54 December 12 2016 =
2987
+ * Integrations: AmoForms, Contact Form Clean and Simple.
2988
+ * Comments check logic refreshed.
2989
+ * Registration JS error fix.
2990
+ * Users check fix.
2991
+ * Fix for translation system.
2992
+ * Minor fixes.
2993
+
2994
+ = 5.53.1 December 9 2016 =
2995
+ * Minor layout fixes.
2996
+
2997
+ = 5.53 November 28 2016 =
2998
+ * Addition warning before deleting users.
2999
+ * Spam FireWall is enabled by default.
3000
+ * Usernoise modal feedback / contact form : integration.
3001
+ * Translations.
3002
+ * Optimization.
3003
+ * Fixes.
3004
+
3005
+ = 5.52.1 November 14 2016 =
3006
+ * Users and comments check: Using new API method.
3007
+ * Quick Contact From: Integration via "Custom Contact Forms" setting.
3008
+ * JavaScript filtration improved.
3009
+ * Translation changes.
3010
+ * Optimized JavaScript code.
3011
+
3012
+ = 5.51 November 2 2016 =
3013
+ * Added protection for internal forms
3014
+ * Immediate spam check for comments and users from WP dashboard
3015
+ * Optimized code
3016
+
3017
+ = 5.50.1 October 24 2016 =
3018
+ * Improved filtration in contact forms.
3019
+ * Spam FireWall: Fixed issue with SFW logs
3020
+ * Skipping service fields: Fast Secure Contact Froms, QU Forms, Custom Contact Forms
3021
+
3022
+ = 5.50 October 20 2016 =
3023
+ * Custom contact forms: integration.
3024
+ * Pirate Forms: integration.
3025
+ * PHP 7 compatibility: Deleted third-party JSON library and dependences.
3026
+ * PHP 7 compatibility: Fixed end of lines.
3027
+ * YOAST Seo: Fixed PHP warnings.
3028
+ * Spam FireWall: Minor fix for Spam FireWall counter.
3029
+ * Only admin could access to CleanTalk dashboard (exclude Authors an Editors).
3030
+ * Improved filtration in contact forms.
3031
+
3032
+ = 5.49.2 October 5 2016 =
3033
+ * Second Fix for database error. Stable version.
3034
+
3035
+ = 5.49.1 October 5 2016 =
3036
+ * Fixed database error.
3037
+
3038
+ = 5.49 October 3 2016 =
3039
+ * Spam FireWall feature: Class upgraded.
3040
+ * New feature: Delete links from approved comments.
3041
+ * Settings: Grouped.
3042
+ * Settings: Altered description fixed spelling mistakes.
3043
+ * Settings: Added indicator for Spam FireWall.
3044
+ * Admin bar: Added Spam FireWall counter
3045
+ * Clean and Simple Contact Form: Direct integration.
3046
+ * WooCommerce: Don't check password recovery form.
3047
+ * WooCommerce Wishlists: Issue with check for Google bots.
3048
+ * JetPack: contact form fix.
3049
+ * Fixed and created the defaults for all CleanTalk options.
3050
+ * Fixed spelling mistakes.
3051
+
3052
+ = 5.48 September 15 2016 =
3053
+ * buddyPress: Added private messages filtering. Doesn't check user if he has 3 or more messages in the "sentbox" and "inbox" folders.
3054
+ * buddyPress: Added option in settings for private messages check.
3055
+ * WooCommerce Wishlist: Added check for wishlists.
3056
+ * Fixed issue with "check all post data" option.
3057
+ * Improved filtering for Gravity Forms
3058
+ * Mobile Assistant Connector fix
3059
+ * Minor fixes.
3060
+
3061
+ = 5.47 September 5 2016 =
3062
+ * WooCommerce: direct integration for checkout form.
3063
+ * WooCommerce Sensei: login form fix.
3064
+ * bbPress: Added the check for topics and comments with stop_words
3065
+ * bbPress: Skip check for admin in comments and topics
3066
+ * UserPro: fixes. Request without field "shortcode"
3067
+ * Contact Form 7: Bug fix.
3068
+ * Spam FireWall: Optimized logs rotation.
3069
+ * Updated inner functions (compatibility fix for PHP 5.4+)
3070
+ * Fixed output of counters (without spamfirewall stats)
3071
+ * Fixed spelling in settings
3072
+ * Added "Delete from the list" button in comments spam check page
3073
+ * Minor fixes.
3074
+
3075
+ = 5.46 August 17 2016 =
3076
+ * Fixed issue with admin bar links in WP Multi Network mode.
3077
+ * Added "All time counter" and "Daily counter" into admin bar.
3078
+ * Added settings to disable counters in admin bar.
3079
+ * New style for "Get access key manually" button.
3080
+
3081
+ = 5.45.2 August 4 2016 =
3082
+ * Added Anti-Spam protection for Quick Event Manager.
3083
+ * Improved bulk spam test for users. Now the plugin does not mark as Spam user, if the user IP address has spam activity more then 30 days ago.
3084
+ * Fixed bulk spam test for comments. Previous version had a conflict between spam history for IP and Email.
3085
+ * Minor fix function to get the API key.
3086
+
3087
+ = 5.45.1 July 26 2016 =
3088
+ * Fixed issue with missed spam messages, subscriptions.
3089
+ * Improved bulk spam test for comments. Now the plugin will not mark as Spam comments, if a comment sender (IP address) has spam activity more then 30 days ago.
3090
+
3091
+ = 5.45 July 21 2016 =
3092
+ * Optimized bulk spam comments deletion.
3093
+ * Turned off JavaScript anti-spam cookies if the option 'Set cookies' is turned off. It helps to avoid issues with Varnish.
3094
+ * Added links to bulk spam comments&users removal tool.
3095
+
3096
+ = 5.44.1 July 13 2016 =
3097
+ * Optimized options getting code.
3098
+ * Added the option 'Protect Logged in users' to do anti-spam tests for submissions by logged in users.
3099
+
3100
+ = 5.43.2 June 30 2016 =
3101
+ * Optimized anti-spam code for AJAX based contact forms.
3102
+ * Fixed CSS layout of counters in Admin bar (issue with layout in IE11).
3103
+
3104
+ = 5.43.1 June 23 2016 =
3105
+ * Added agent version in requests to test a connection between the website and servers.
3106
+ * Fixed issue with PHP notices in cleantalk-admin.php.
3107
+
3108
+ = 5.43 June 22 2016 =
3109
+ * Added spam protection for registrations via 'Login with AJAX' plug-in.
3110
+ * Added a new counter to Admin bar that allows to count spam and approved submissions since last reset.
3111
+ * Update the code that tests a connection between a website and CleanTalk's servers. New version doesn't generate submissions with email good@cleantalk.org.
3112
+ * Fixed issue with spam protection for nested forms by Formidable plug-in.
3113
+
3114
+ = 5.42 2016-06-15 =
3115
+ * Added anti-spam protection for UserPro.
3116
+ * Improved protection for Formidable forms + Varnish.
3117
+ * Improved bulk search for spam accounts.
3118
+ * Fixed spam protection for pages that contain multiple Formidable forms with same HTML ID.
3119
+ * Optimized PHP code to be compatible with PHP 5.4 and above. The patch has been applied to Formidable forms spam protection.
3120
+ * Minor fixes in plugin backend.
3121
+
3122
+ = 5.41 2016-05-31 =
3123
+ * Added HTTP response in plugin response if an network issue was happend.
3124
+ * Optimized JavaScript anti-spam test for Formidable forms.
3125
+ * Re-stored the option to auto redirect to plugn settings after plugin activation.
3126
+ * Fixed issue with nasted fields in Formidable forms.
3127
+
3128
+ = 5.40.3 2016-05-26 =
3129
+ * Added option to encrypt (SSL) connection to CleanTalk anti-spam servers.
3130
+ * Added JSON encoding for AJAX forms.
3131
+ * Obfuscated private data for Custom contact forms option.
3132
+ * Optimized bulk users check for spam over blacklists database.
3133
+ * Fixed issue with lost connection to servers and JavaScript anti-spam test.
3134
+ * Fixed issue with WordFence and collect_details.
3135
+
3136
+ = 5.40.2 2016-05-11 =
3137
+ * Improved account status check logic.
3138
+ * Fixed issue with double anti-spam tests for FastSecure contact forms.
3139
+ * Fixed issue with nulled JavaScript variables assigned from backend. This issue might me occurred on standart WordPress registration form and with failed JavaScript spam test.
3140
+ * Fixed issue with session_start() with PHP sessions stored in memcache.
3141
+
3142
+ = 5.40.1 2016-04-28 =
3143
+ * Fixed issue with Super Socializer.
3144
+ * Fixed issue with spam filtration for logged in users and Formidable forms.
3145
+ * Added logging of all submitted fields for FastSecure contact form.
3146
+
3147
+ = 5.40 2016-04-19 =
3148
+ * Added JSON encoding for posts that were protected via Custom contact forms option. It allows show anti-spam logs in the Dashboard in more comfortable view.
3149
+ * Minor fix in plugin settings.
3150
+ * Fixed pagination for bulk users spam test.
3151
+ * Fixed issue with unknown _SESSION.
3152
+ * Fixed issue with double Spam FireWall database upload.
3153
+
3154
+ = 5.39.1 2016-04-04 =
3155
+ * Improved AJAX based anti-spam test with HTTPS backends.
3156
+ * Added fix to avoid issue with empty ct_info_flag on JavaScript side.
3157
+ * Added logic to exclude caching for Spam FireWall.
3158
+ * Removed a condition to skip accounts with 127.0.0.1 IP in spam test for registered acconts.
3159
+
3160
+ = 5.38.1 2016-03-24 =
3161
+ * Fixed issue with PHP sessions and 'The session id is too long or contains illegal characters'.
3162
+ * Removed Spam FireWall protection on /feed page.
3163
+ * Disabled anti-spam tests for AJAX calls if the option 'Custom contact forms' is turned off.
3164
+ * Added reject notice for spam submissions on Gravity forms with AJAX calls.
3165
+
3166
+ = 5.37.3 2016-03-10 =
3167
+ * Minor bug fixes. Added an option to support Varnish cache.
3168
+
3169
+ = 5.36.1 2016-02-05 =
3170
+ * Fixed bug, when users receive error after logging in
3171
+
3172
+ = 5.36 2016-02-04 =
3173
+ * Improved JavaScript anti spam protection
3174
+ * Improvements for avoiding blocking requests from payment systems
3175
+
3176
+ = 5.35 2016-01-14 =
3177
+ * Added support for IP licensing
3178
+ * Some anti-spam protection improvements
3179
+ * Small backend interface fixes
3180
+
3181
+ = 5.34.1 2015-12-17 =
3182
+ * Fixed trackback antispam protection: improved checking mechanism
3183
+ * Fixed problem with blocking MailPoet: added exclusions in spam checking algorithm
3184
+
3185
+ = 5.34 2015-12-10 =
3186
+ * Improved spam checking mechanism
3187
+ * Added "Collect browser details" option for better antispam protection
3188
+ * Fixed custom contact forms checking
3189
+ * Minor translations fixes
3190
+
3191
+ = 5.33.1 2015-12-04 =
3192
+ * Fixed issue with BBPress
3193
+ * Fixed anti-spam comments checking
3194
+ * Fixed bulk checking
3195
+ * Fixed trackback and pingback checking
3196
+
3197
+ = 5.33 2015-12-01 =
3198
+ * Backend interface fixes
3199
+ * Improved Spam FireWall efficiency
3200
+ * Improved performance of anti spam checking
3201
+
3202
+ = 5.32 2015-11-26 =
3203
+ * Added improvements for manual spam detection
3204
+ * Fixed errors in backend
3205
+ * Fixed bulk users anti spam checking
3206
+ * Added indicator for bulk spam checking
3207
+ * Added "Get access key automatically" feature
3208
+
3209
+ = 5.31 2015-11-11 =
3210
+ * Improved backend performance
3211
+ * Fixed counter of approved/blocked spam attacks
3212
+ * Fixed Spam Firewall logging
3213
+
3214
+ = 5.30 2015-11-05 =
3215
+ * Improved anti-spam checking
3216
+ * Optimized performance
3217
+ * Fixed blocking email preview in MailPoet
3218
+ * Interface fixes
3219
+ * WPMU interface fixes
3220
+
3221
+ = 5.29 2015-10-27 =
3222
+ * Optimized performance
3223
+ * Fixed bugs in custom contact forms spam checking
3224
+
3225
+ = 5.28.7 2015-10-23 =
3226
+ * Major backend peromance fix.
3227
+
3228
+ = 5.28 2015-10-16 =
3229
+ * Fixed errors in anti-spam checking
3230
+ * Restored options for spam checking registrations and cpmmon contact forms
3231
+ * Improved anti spam defence
3232
+ * Fixed problems with AJAX functionality in MailPoet, WooCommerce and other AJAX plugins
3233
+
3234
+ = 5.27 2015-10-13 =
3235
+ * Improvements in Spam FireWall feature
3236
+ * Code optimization
3237
+ * Backend interface fixes
3238
+
3239
+ = 5.26 2015-10-05 =
3240
+ * Added WordPress Language Pack support
3241
+ * Removed spam checking for some autorisation plugins
3242
+ * New experimental feature: Spam FireWall
3243
+
3244
+ = 5.25.2 2015-09-28 =
3245
+ * Fixed backend bug
3246
+
3247
+ = 5.25.1 2015-09-28 =
3248
+ * Added widget with anti-spam stats
3249
+ * Added information about blocked spam attacks in admin dashboard and CleanTalk settings
3250
+ * Added ability not to check comments for users with 3 or above allowed comments
3251
+ * Added an option 'Help others known CleanTalk' to show information for site visitors, that your site is protected from spam by us
3252
+ * Some backend interface settings
3253
+ * Removed "CleanTalk connection test" query
3254
+
3255
+ = 5.24.1 2015-09-16 =
3256
+ * Fixed some errors in frontend
3257
+ * Fixed access key saving
3258
+
3259
+ = 5.24 2015-09-14 =
3260
+ * Backend interface fixes
3261
+ * Improvement for AJAX JavaScript spam checking
3262
+
3263
+ = 5.23 2015-09-01 =
3264
+ * Fixed BuddyPress profile search false positivities of anti-spam protection.
3265
+ * Some interface fixes of bulk users & comments spam checking
3266
+
3267
+ = 5.22 2015-08-26 =
3268
+ * Fixed possible XSS issue for anti-spam test on third-party forms.
3269
+
3270
+ = 5.21 2015-08-21 =
3271
+ * Fixed bug with skipping spam submissions
3272
+ * Fixed bug with receiving old user_token for viewing anti-spam stats
3273
+ * Small backend fixes
3274
+
3275
+ = 5.20 2015-08-15 =
3276
+ * Fixed anti-spam stats in admin bar
3277
+ * Fixed issue with skipping spam submissions
3278
+ * Added some PHP-constants for advanced users
3279
+
3280
+ = 5.19 2015-08-11 =
3281
+ * New feature: anti-spam checking for registered users
3282
+ * Fixed issue with AJAX JavaScript checking
3283
+ * Fixed issue with SEO Yoast xml sitemaps.
3284
+
3285
+ = 5.18 2015-08-04 =
3286
+ * Fixed issue with user_token
3287
+ * Added anti-spam API, see our FAQ
3288
+
3289
+ = 5.17 2015-07-23 =
3290
+ * Fixed infinite redirection after activation
3291
+ * Minor backend fixes
3292
+
3293
+ = 5.16 2015-07-22 =
3294
+ * Fixed external services checking
3295
+ * Fixed mass comments deletion
3296
+ * Fixed AJAX anti-spam protection
3297
+
3298
+ = 5.15 2015-07-16 =
3299
+ * New feature: anti-spam protection for forms, that uses external services
3300
+
3301
+ = 5.14 2015-07-03 =
3302
+ * Added anti-spam protection for some themes and plugins
3303
+ * Some backend fixes
3304
+
3305
+ = 5.13 2015-06-12 =
3306
+ * Closing notification for anti-spam renew
3307
+ * Fixed bulk anti spam comment checking
3308
+
3309
+ = 5.12 2015-06-01 =
3310
+ * Added option for checking all post data for spam
3311
+ * Some JavaScript protection improvements
3312
+ * Added option for old JavaScript check (without AJAX)
3313
+
3314
+ = 5.10 2015-05-25 =
3315
+ * Fixed Javascript error on some forms
3316
+
3317
+ = 5.9 2015-05-21 =
3318
+ * Fixed Javascript error on CF7 and JetPack
3319
+ * Some backend and frontent fixes
3320
+
3321
+ = 5.8 2015-05-18 =
3322
+ * Minor fixes
3323
+
3324
+ = 5.7 2015-05-18 =
3325
+ * Fixed French translation
3326
+ * Fixed protection algorithm
3327
+
3328
+ = 5.6 2015-05-11 =
3329
+ * Fixed translation
3330
+ * Fixed bulk comments anti-spam checking
3331
+ * Added option for disabling anti spam stats in adminbar
3332
+ * Some security fixes
3333
+
3334
+ = 5.5 2015-04-29
3335
+ * Fixed security issue
3336
+
3337
+ = 5.4 2015-04-27 =
3338
+ * Some interface and functionality changes in plugin settings page
3339
+ * Added counter for anti-spam stats in admin bar
3340
+
3341
+ = 5.3 2015-04-13 =
3342
+ * Added anti-spam protection for Divi theme contact forms
3343
+ * Added anti-spam protection for MyMail contact forms
3344
+ * Added anti-spam protection for MailPoet Newsletters
3345
+ * Some interface and functionality changes in backend
3346
+
3347
+ = 5.2 2015-04-01 =
3348
+ * Added link for anti-spam stats
3349
+ * Added WP User Frontend Pro registration form protection
3350
+
3351
+ = 5.10 2015-03-24 =
3352
+ * Fixed site crash after installing 5.0 on some websites
3353
+
3354
+ = 5.00 2015-03-24 =
3355
+ * Added bulk comments checking for spam via CleanTalk blacklists
3356
+ * Added anti-spam form protection for 'Ajax Login & Register'
3357
+ * Fixed JetPack form protection
3358
+
3359
+ = 4.24 2015-03-20 =
3360
+ Added immediate spam protection activation.
3361
+
3362
+ = 4.22 2015-03-17 =
3363
+ * Added button for automatic spam protection key getting.
3364
+
3365
+ = 4.21 2015-03-11 =
3366
+ * Added license renew notification.
3367
+
3368
+ = 4.20 2015-03-03 =
3369
+ * German, Italian, Polish, Portuguese translations, minor code fixes.
3370
+
3371
+ = 4.19 2015-02-24 =
3372
+ * Increased JS keys lifetime.
3373
+
3374
+ = 4.18 2015-02-17 =
3375
+ * Bugfix - fixed bug with comments approvement, PayPal 'payment_status' and Akismet 'spam' status processing.
3376
+
3377
+ = 4.17 2015-02-12 =
3378
+ * New base class, divided code to 3 separate files - common, public and admin.
3379
+
3380
+ = 4.16 2015-02-05 =
3381
+ * New base class, fixed JetPack filters logics, optimized Formidable, bbPress, BuddyPress filters.
3382
+
3383
+ = 4.15 2015-01-29 =
3384
+ * Support of Contact Form 7 versions before 3.0.0, fixed global JS-vars and online notice cookie logics.
3385
+
3386
+ = 4.14 2015-01-19 =
3387
+ * Removed deprecated option from comment approvement code.
3388
+
3389
+ = 4.13 2014-12-29 =
3390
+ * Not spam comments auto approvement bug fix.
3391
+
3392
+ = 4.12 2014-12-29 =
3393
+ * Plugin backend minfor bug fixes.
3394
+
3395
+ = 4.11 2014-12-22 =
3396
+ * Major changes in spam protection algorithms.
3397
+
3398
+ = 4.10 2014-12-10 =
3399
+ * Minor improvements for custom contact/registration/subscribe forms.
3400
+
3401
+ = 4.9 2014-11-24 =
3402
+ * Minor bug fix for Contact form 7.
3403
+
3404
+ = 4.8 2014-11-19 =
3405
+ * Improved anti-spam protection for BuddyPress registrations and custom contact forms.
3406
+
3407
+ = 4.7 2014-11-16 =
3408
+ * Fixed JavaScript antispam test for FastSecure contact form.
3409
+
3410
+ = 4.6 2014-11-11 =
3411
+ * Minor changes in anti-spam logic for BuddyPress registrations, contact forms and bbPress guest posting.
3412
+
3413
+ = 4.5 2014-11-04 =
3414
+ * Bug fixes for Contact form 7 and bbPress guests posting.
3415
+
3416
+ = 4.4 2014-10-29 =
3417
+ * Improved JS checking for CF7.
3418
+
3419
+ = 4.2 2014-10-20 =
3420
+ * Increased plugin perfomance for BuddyPress registrations.
3421
+
3422
+ = 4.1 2014-10-13 =
3423
+ * Minor anti-spam improvements for contacts, registration and contact forms.
3424
+
3425
+ = 4.0 2014-10-06 =
3426
+ * Major anti-spam improvements for registration and contact forms.
3427
+
3428
+ = 3.9 2014-10-01 =
3429
+ * Did exception to do not break to create new user in WordPress backend.
3430
+
3431
+ = 3.8 2014-09-19 =
3432
+ * Bug fix release. Minor fixes in API class and JavaScript anti-spam test.
3433
+
3434
+ = 3.6 2014-09-15 =
3435
+ * Minor fixes in anti-spam protection for Formidable and custom contact forms.
3436
+
3437
+ = 3.4 2014-09-04 =
3438
+ * Spam comments rotation. Custom (themes) contact forms support.
3439
+
3440
+ = 3.2 2014-08-27 =
3441
+ * Minor changes in spam filtration logic.
3442
+
3443
+ = 3.1 2014-08-19 =
3444
+ * Major changes for comments antispam logic. Improved plugin speed.
3445
+
3446
+ = 2.59 2014-08-14 =
3447
+ * Antispam protection for bbPress guests posts. Improvement for JetPack comments and PHP API update.
3448
+
3449
+ = 2.58 2014-08-06 =
3450
+ * Added anti-spam protection for signups posted via WooCommerce order form.
3451
+ * Improved anti-spam protection for Contact Form 7.
3452
+ * Improved anti-spam protection for registrations. Now the plugin looking for JavaScript antispam test results not only in POST array, but in COOKIES array too. This improvement allows protect signup forms for any untested signups plugins and themes.
3453
+ * Updated PHP API. No the plugin can resolve sender IP for websites behind proxy servers. If the proxy servers uses private IP address.
3454
+
3455
+ = 2.57 2014-07-29 =
3456
+ * Improved anti-spam protection for comments. The plugin now proccessing website url in the comments form.
3457
+ * Fixed sign remove logic for approved comments. Previous version doesn't cut sign for comments approved via AJAX call in WordPress backend.
3458
+ * Fixed switching to SSL for comments. Previous version doesn't use secured connection for comments.
3459
+
3460
+ = 2.56 2014-07-21 =
3461
+ * Fixed account status check logic. Previous version makes unnecessary test API calls when the plugin asks account status check.
3462
+
3463
+ = 2.55 2014-07-11 =
3464
+ * Fixed bug with account status function. In backend the plugin showed notice 'Please don't forget to disable CAPTCHA if you have it on every page.
3465
+
3466
+ = 2.54 2014-07-11 =
3467
+ * Fixed signup anti-spam protection logic for BuddyPress registrations.
3468
+ * Fixed anti-spam protection for JetPack contact form.
3469
+ * Changed account status check logic.
3470
+
3471
+ = 2.53 2014-06-27 =
3472
+ * Fixed anit-spam protection bug for signups.
3473
+ * Changed anti-spam functions (comments and signups) priority.
3474
+
3475
+ = 2.52 2014-06-25 =
3476
+ * Fixed 'Fatal error: Call to a member function get_error_code()' issue with signups via BuddyPress.
3477
+
3478
+ = 2.51 2014-06-23 =
3479
+ * Added spam protection for registrations via plugin New User Approve by Josh Harrison. If the CleanTalk matched signup as spam this signup will be denied to placing in pending queue.
3480
+ * Added option "Use secure (SSL) connection to CleanTalk cloud". If the option enabled plugin will communicate with CleanTalk severs via 128bit encrypted data channel. So, if you have SSL protected webforms on website you can use this option to be sure that visitors personal data safely transmits to CleanTalk servers.
3481
+ * Fixed minor bug with loading backend functions.
3482
+
3483
+ = 2.49 2014-06-10 =
3484
+ * Added spam protection for S2Member Auth.net forms.
3485
+ * Added spam protection for multisite signup form.
3486
+ * Optimized account status check function.
3487
+
3488
+ = 2.46 2014-05-19 =
3489
+ * Added: HTML notice about the need to enable JavaScript.
3490
+ * Fixed: Fixed pingbacks anti-spam test.
3491
+
3492
+ = 2.44 2014-05-12 =
3493
+ * Added: Anti-spam protection for S2Member framework.
3494
+ * Improved: Plugin load time for backend and frontend.
3495
+ * Improved: JavaScript anti-spam test.
3496
+ * Fixed: PHP warning mb_convert_encoding()
3497
+
3498
+ = 2.42 2014-04-29 =
3499
+ * Fixed: JavaScript anti-spam test for comments.
3500
+
3501
+ = 2.38 2014-03-27 =
3502
+ * Fixed: Registraion form submit time spam test.
3503
+
3504
+ = 2.36 2014-03-12 =
3505
+ * Reversed to patches from old revisions.
3506
+
3507
+ = 2.35 2014-03-12 =
3508
+ * New: Notifications about disabled account
3509
+ * New: Improved JavaScript spam test.
3510
+ * Fixed: Code optimization
3511
+ * Fixed: JavaScript test for signups.
3512
+
3513
+ = 2.33 2014-02-12 =
3514
+ * Fixed: CURLOPT_FOLLOWLOCATION bug at admin notice
3515
+
3516
+ = 2.32 2014-02-04 =
3517
+ * New: Added notice about automatically approved comment. The notice shows only for first approved comment and only for new commentators (without approved comments) of the blog.
3518
+ * New: At WordPress console added banner for notices.
3519
+ * Changed: Screenshots updated.