Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I had the same problem and did not find any support on Wordfence. Here is my solution that worked for me (but I am not sure if the problem will come back after a future Wordfence update)

    In: plugins/wordfence/lib/wfGeoIP.php on line 432

    Start on line 432 and replace this:

    function geoip_country_code_by_name($gi, $name) {
      $country_id = geoip_country_id_by_name($gi,$name);
      if ($country_id !== false) {
            return $gi->GEOIP_COUNTRY_CODES[$country_id];
      }
      return false;
    }
    function geoip_country_name_by_name($gi, $name) {
      $country_id = geoip_country_id_by_name($gi,$name);
      if ($country_id !== false) {
            return $gi->GEOIP_COUNTRY_NAMES[$country_id];
      }
      return false;
    }

    ************************With this:********************

    if (!function_exists('geoip_country_code_by_name')){
        function geoip_country_code_by_name($gi, $name) {
          $country_id = geoip_country_id_by_name($gi,$name);
          if ($country_id !== false) {
                return $gi->GEOIP_COUNTRY_CODES[$country_id];
          }
          return false;
        }
    }
    
    if (!function_exists('geoip_country_name_by_name_v6')){
        function geoip_country_name_by_name_v6($gi, $name) {
          $country_id = geoip_country_id_by_name_v6($gi,$name);
          if ($country_id !== false) {
                return $gi->GEOIP_COUNTRY_NAMES[$country_id];
          }
          return false;
        }
    }
    
    if (!function_exists('geoip_country_name_by_name')){
        function geoip_country_name_by_name($gi, $name) {
          $country_id = geoip_country_id_by_name($gi,$name);
          if ($country_id !== false) {
                return $gi->GEOIP_COUNTRY_NAMES[$country_id];
          }
          return false;
        }
    }

    It solved the problem for me.

    Getting Error: Signal 15 is sent to script!
    After updating to BackWPup Version 3.0.10
    Tried to switch to Tar GZip but still same error …

    any feedback on this?

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)