Changeset 1446628
- Timestamp:
- 06/30/2016 02:43:08 PM (10 years ago)
- Location:
- datadome
- Files:
-
- 21 added
- 3 edited
-
tags/1.2 (added)
-
tags/1.2/classes (added)
-
tags/1.2/classes/Autoloader.php (added)
-
tags/1.2/classes/DataDome (added)
-
tags/1.2/classes/DataDome/GetServers.php (added)
-
tags/1.2/classes/DataDome/Util.php (added)
-
tags/1.2/classes/DataDome/ValidateRequest.php (added)
-
tags/1.2/datadome.php (added)
-
tags/1.2/readme.txt (added)
-
tags/1.2/resources (added)
-
tags/1.2/resources/admin (added)
-
tags/1.2/resources/admin/css (added)
-
tags/1.2/resources/admin/css/data-dome.css (added)
-
tags/1.2/resources/admin/includes (added)
-
tags/1.2/resources/admin/includes/nag.php (added)
-
tags/1.2/resources/admin/includes/settings.php (added)
-
tags/1.2/resources/admin/js (added)
-
tags/1.2/resources/admin/js/data-dome.js (added)
-
tags/1.2/resources/images (added)
-
tags/1.2/resources/images/favicon.png (added)
-
tags/1.2/uninstall.php (added)
-
trunk/classes/DataDome/Util.php (modified) (1 diff)
-
trunk/datadome.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
datadome/trunk/classes/DataDome/Util.php
r1409163 r1446628 76 76 curl_setopt($conn, CURLOPT_FRESH_CONNECT, true); 77 77 curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1); 78 curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1);79 78 curl_setopt($conn, CURLOPT_CONNECTTIMEOUT, $timeout*1000); 80 79 curl_setopt($conn, CURLOPT_TIMEOUT, $timeout*1000); -
datadome/trunk/datadome.php
r1409163 r1446628 4 4 * Plugin URI: https://datadome.co 5 5 * Description: DataDome plugin for Wordpress allows you to monitor for free your website traffic quality. 1 / Follow the evolution of traffic generated by the different types of traffic: Human, Good Bots, Bad Bots, Monetizable Bots. 2 / Observe and understand massive attacks against your website. 6 * Version: 1. 16 * Version: 1.2 7 7 * Author: DataDome 8 8 * Author URI: https://datadome.co … … 31 31 define("DATADOME_PLUGIN_NAME__", "DataDome"); 32 32 define("DATADOME_PLUGIN_SLUG__", "__data_dome_"); 33 define("DATADOME_PLUGIN_VERSION__", "1. 1");33 define("DATADOME_PLUGIN_VERSION__", "1.2"); 34 34 define("DATADOME_DIR__", trailingslashit(plugin_dir_path(__FILE__))); 35 35 define("DATADOME_LOG_FILE__", DATADOME_DIR__ . "tmp/log.log"); … … 350 350 { 351 351 if ($this->dataDomeResult && $this->dataDomeResult["error"] == 403) { 352 header('HTTP/1.0 403 Forbidden'); 352 353 echo $this->dataDomeResult["response"]; 353 354 exit(); -
datadome/trunk/readme.txt
r1409163 r1446628 4 4 Requires at least: 4.0 5 5 Tested up to: 4.5 6 Stable tag: 1. 16 Stable tag: 1.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 96 96 == Changelog == 97 97 98 = 1.2 = 99 Release date: June 30st, 2016 100 * improve compatibility with safe mode 101 98 102 = 1.1 = 99 103 Release date: April 29st, 2016
Note: See TracChangeset
for help on using the changeset viewer.