Plugin Directory

Changeset 1446628


Ignore:
Timestamp:
06/30/2016 02:43:08 PM (10 years ago)
Author:
devdatadome
Message:

improve compatibility with safe mode (1.2 version)

Location:
datadome
Files:
21 added
3 edited

Legend:

Unmodified
Added
Removed
  • datadome/trunk/classes/DataDome/Util.php

    r1409163 r1446628  
    7676        curl_setopt($conn, CURLOPT_FRESH_CONNECT, true);
    7777        curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1);
    78         curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1);
    7978        curl_setopt($conn, CURLOPT_CONNECTTIMEOUT, $timeout*1000);
    8079        curl_setopt($conn, CURLOPT_TIMEOUT, $timeout*1000);
  • datadome/trunk/datadome.php

    r1409163 r1446628  
    44* Plugin URI: https://datadome.co
    55* 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.1
     6* Version: 1.2
    77* Author: DataDome
    88* Author URI: https://datadome.co
     
    3131define("DATADOME_PLUGIN_NAME__", "DataDome");
    3232define("DATADOME_PLUGIN_SLUG__", "__data_dome_");
    33 define("DATADOME_PLUGIN_VERSION__", "1.1");
     33define("DATADOME_PLUGIN_VERSION__", "1.2");
    3434define("DATADOME_DIR__", trailingslashit(plugin_dir_path(__FILE__)));
    3535define("DATADOME_LOG_FILE__", DATADOME_DIR__ . "tmp/log.log");
     
    350350    {
    351351        if ($this->dataDomeResult && $this->dataDomeResult["error"] == 403) {
     352            header('HTTP/1.0 403 Forbidden');
    352353            echo $this->dataDomeResult["response"];
    353354            exit();
  • datadome/trunk/readme.txt

    r1409163 r1446628  
    44Requires at least: 4.0
    55Tested up to: 4.5
    6 Stable tag: 1.1
     6Stable tag: 1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696== Changelog ==
    9797
     98= 1.2 =
     99Release date: June 30st, 2016
     100* improve compatibility with safe mode
     101
    98102= 1.1 =
    99103Release date: April 29st, 2016
Note: See TracChangeset for help on using the changeset viewer.