Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
**Contributors:** [elemntor](https://profiles.wordpress.org/elemntor), [KingYes](https://profiles.wordpress.org/KingYes), [ariel.k](https://profiles.wordpress.org/ariel.k), [maor](https://profiles.wordpress.org/maor)
**Tags:** Activity Log, User Log, Audit Log, Security, Email Log,
**Requires at least:** 6.0
**Requires PHP:** 7.0
**Tested up to:** 6.7
**Requires PHP:** 7.4
**Tested up to:** 6.8
**Stable tag:** 2.11.2
**License:** GPLv2 or later

This top rated Activity Log plugin helps you monitor & log all changes and actions on your WordPress site, so you can remain secure and organized.

## Description ##
## Description

<strong>AN EASY TO USE & FULLY SUPPORTED WORDPRESS ACTIVITY LOG PLUGIN</strong><br />

Expand Down Expand Up @@ -89,36 +89,37 @@ We understand the importance of maintaining a clean and efficient database envir
<h3>Contributions:</h3>
<strong>Would you like to contribute to this plugin?</strong> You’re more than welcome to submit your pull requests on the [GitHub repo](https://github.com/pojome/activity-log). And, if you have any notes about the code, please open a ticket on the issue tracker.

## Installation ##
## Installation

1. Upload plugin files to your plugins folder, or install using WordPress' built-in Add New Plugin installer
1. Activate the plugin
1. Go to the plugin page (under Dashboard > Activity Log)

## Screenshots ##
## Screenshots

1. The log viewer page
2. The settings page
3. Screen Options

## Frequently Asked Questions ##
## Frequently Asked Questions

### Requirements ###
__Requires PHP 7.0__ for list management functionality.
### Requirements

### What is the plugin license? ###
__Requires PHP 7.4__ for list management functionality.

### What is the plugin license?

This plugin is released under a GPL license.

### Can I export logs? ###
### Can I export logs?

You can easily export logs with Activity Log. We also support exporting filtered results. Filter by the time the action took place, roles, users, options, action type, and more.

### How can I report security bugs? ###

You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. [Report a security vulnerability](https://patchstack.com/database/vdp/aryo-activity-log).

## Changelog ##
## Changelog

### 2.11.2 - 2024-11-12 ###
* Security Fix: Improved code security enforcement in theme/plugin file editor
Expand Down
23 changes: 10 additions & 13 deletions aryo-activity-log.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,6 @@ final class AAL_Main {
*/
public $notifications;

/**
* Load text domain
*/
public function load_textdomain() {
load_plugin_textdomain( 'aryo-activity-log' );
}

/**
* Construct
*/
Expand All @@ -105,8 +98,6 @@ protected function __construct() {

// set up our DB name
$wpdb->activity_log = $wpdb->prefix . 'aryo_activity_log';

add_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) );
}

/**
Expand All @@ -119,8 +110,11 @@ protected function __construct() {
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'aryo-activity-log' ), '2.0.7' );
_doing_it_wrong(
__FUNCTION__,
sprintf( 'Cloning instances of the singleton "%s" class is forbidden.', get_class( $this ) ),
'1.0.0'
);
}

/**
Expand All @@ -130,8 +124,11 @@ public function __clone() {
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden
_doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'aryo-activity-log' ), '2.0.7' );
_doing_it_wrong(
__FUNCTION__,
sprintf( 'Unserializing instances of the singleton "%s" class is forbidden.', get_class( $this ) ),
'1.0.0'
);
}

/**
Expand Down
12 changes: 6 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: elemntor, KingYes, ariel.k, maor
Tags: Activity Log, User Log, Audit Log, Security, Email Log,
Requires at least: 6.0
Requires PHP: 7.0
Tested up to: 6.7
Requires PHP: 7.4
Tested up to: 6.8
Stable tag: 2.11.2
License: GPLv2 or later

Expand All @@ -20,7 +20,7 @@ Want to monitor and track your WordPress website activity? Find out exactly who
* If a plugin/theme was activated/deactivated
* Suspicious admin activity

It’s so essential; you’ll wonder how you ever managed your website without it. The plugin is also lightning fast and works behind the scenes, so it doesn\’t affect site and admin performance. For optimal performance, we built the plugin so that it runs on a separate table in the database.
It’s so essential; you’ll wonder how you ever managed your website without it. The plugin is also lightning fast and works behind the scenes, so it doesn’t affect site and admin performance. For optimal performance, we built the plugin so that it runs on a separate table in the database.

If you have more than a handful of users, keeping track of who did what is virtually impossible. This plugin solves that issue by tracking what actions were initiated by which users, and displaying it in an easy-to-use and easy-to-filter view on the dashboard of your WordPress site.

Expand Down Expand Up @@ -61,7 +61,7 @@ For each event recorded by the activity log, the following details are also logg
* Source IP address from which the change originated
* Affected object where the change occurred

The plugin doesn\’t require any kind of setup; it works right out of the box (just another reason people love it)!
The plugin doesn’t require any kind of setup; it works right out of the box (just another reason people love it)!

<h3>Data Storage and Performance Optimization</h3>

Expand Down Expand Up @@ -395,8 +395,8 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
* Added filter by date - All Time, Today, Yesterday, Week, Month
* Added Avatar to author
* Added role for author
* Added log for activeted theme
* Re-order Culoumns
* Added log for activated theme
* Re-order Columns
* Compatible up to 3.8.1
* Settings page is now accessible directly from Activity Log's menu
* Keep your log for any time your wants
Expand Down