Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved handling of ignore_user_agents #3238

Merged
merged 14 commits into from
May 13, 2023
Merged

Improved handling of ignore_user_agents #3238

merged 14 commits into from
May 13, 2023

Commits on May 5, 2023

  1. Improve ignore_user_agents functionality

    Modified the code to skip request logging for all user agents that contain any substring of an ignored agent in the ignore_user_agents config. The previous code only matched the exact string of user_agent with the ignore_user_agents config using in_array function, which resulted in some requests not being skipped from logging. Now, the code uses stristr function to match the string partially and case-insensitive, which improves the functionality of ignore_user_agents.
    empiricompany authored May 5, 2023
    Configuration menu
    Copy the full SHA
    59712fa View commit details
    Browse the repository at this point in the history

Commits on May 6, 2023

  1. Fix wrong compare

    empiricompany authored May 6, 2023
    Configuration menu
    Copy the full SHA
    b7d3348 View commit details
    Browse the repository at this point in the history
  2. update ignore_user_agents config

    add more bots strings
    empiricompany authored May 6, 2023
    Configuration menu
    Copy the full SHA
    b186f42 View commit details
    Browse the repository at this point in the history
  3. Fix mistype

    empiricompany authored May 6, 2023
    Configuration menu
    Copy the full SHA
    f3c993d View commit details
    Browse the repository at this point in the history

Commits on May 7, 2023

  1. Configuration menu
    Copy the full SHA
    20e8387 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fe20b01 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    761f2cc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6bef18a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    519b9e3 View commit details
    Browse the repository at this point in the history
  6. Update Visitor.php

    fballiano authored May 7, 2023
    Configuration menu
    Copy the full SHA
    b3c9dab View commit details
    Browse the repository at this point in the history

Commits on May 13, 2023

  1. Configuration menu
    Copy the full SHA
    46803c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df80a7a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    752f4c4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    42c5955 View commit details
    Browse the repository at this point in the history