Entry Log

Overview
Displays log entries from admin staff and accounts. Useful for security. Entry log is enabled/disabled in the settings.

It is recommended you clear the entry log from time to time.
Top Bar Options
- Filter by account type or admin

- Search entries

- Save to CSV. Export mirrors filters / search.

- Clear log. If filters / search is set, it will mirror filters. For example, if you searched for 'user', it would only delete entries you see on screen.
Disable Logging of Certain Staff / Accounts
Its possible to enable the entry log, but not log entries by certain staff/accounts. For example, a site developer or owner might not want his/her log entries to appear.

For accounts, you can enable / disable the entry log on the relevant account edit screen. To disable admin staff, open the 'control/options.php' file in a text editor and look for the following:

define('ENTRY_LOG_SKIP_USERS', '');
Enter email addresses separated with a comma. This is not case sensitive. So, for example, to disable logging of the following:

johndoe@example.com
ayumihamasaki@example.com:

You would enter:

define('ENTRY_LOG_SKIP_USERS', 'johndoe@example.com,ayumihamasaki@example.com');
To disable logging for the global admin user as set in the 'admin/control/access.php' file use the following variable:

GLOBAL_NO

define('ENTRY_LOG_SKIP_USERS', 'GLOBAL_NO,johndoe@example.com,ayumihamasaki@example.com');