Plugin Directory

Changeset 2912227


Ignore:
Timestamp:
05/14/2023 06:26:10 PM (3 years ago)
Author:
slick2
Message:

added 5 to selection of log retention

Location:
traffic-jammer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • traffic-jammer/trunk/README.md

    r2911252 r2912227  
    88Tested up to: 6.2
    99
    10 Stable tag: 1.0.10
     10Stable tag: 1.1.0
    1111
    1212Requires PHP: 7.4
     
    1818## Description
    1919
    20 The poormans WAF.  WordPress plugin to block IP and bots categorized as harmful, resulting in heavy server loads from frequently crawled pages, or utilized in vulnerability/security breach scans.  The plugiin can block:
     20Prevent unwanted traffic incidents that might result in site outages and billing overages.  WordPress plugin that blocks IP and bots categorized as harmful, resulting in heavy server loads from frequently crawled pages, or utilized in vulnerability/security breach scans.  The plugiin can block:
    2121
    2222- Single IP
  • traffic-jammer/trunk/readme.txt

    r2911756 r2912227  
    55Requires at least: 5.2
    66Tested up to: 6.2
    7 Stable tag: 1.0.10
     7Stable tag: 1.1.0
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    5454
    5555== Changelog ==
     56= 1.1.0 =
     57* added 5 days in the selection of retention period of logs
     58
    5659= 1.0.10 =
    5760* fix bug on detecting real IP when domain is using Cloudflare proxy
  • traffic-jammer/trunk/traffic-jammer.php

    r2911252 r2912227  
    99 * Plugin URI:          https://wordpress.org/plugins/traffic-jammer/
    1010 * Description:         WordPress plugin to block IP and bots that causes malicious traffic.
    11  * Version:             1.0.10
     11 * Version:             1.1.0
    1212 * Requires at least:   5.2
    1313 * Requires PHP:        7.4
     
    555555    }
    556556    echo '>3 days</option>';
     557    echo '<option value="5" ';
     558    if ( $interval_day == 5 ) {
     559        echo 'SELECTED';
     560    }
     561    echo '>5 days</option>';
    557562    echo '<option value="7"';
    558563    if ( $interval_day == 7 ) {
Note: See TracChangeset for help on using the changeset viewer.