Logify WP – Activity Log & User Audit Log
Logify WP provides real-time, detailed logs of activities happening across your WordPress website. Whether you’re an agency, freelancer, IT team, developer, or website administrator, Logify WP gives you full visibility into your website’s activity with a comprehensive activity log and audit log. From tracking post edits to user login attempts and plugin updates, Logify WP helps you monitor and secure your site with clear and easy-to-understand logs. Take your activity logs to the next level with activity Notes! This feature allows you to attach searchable notes linked to logged events, providing valuable context. Need to document why a plugin was installed, who approved an update, or where a license is stored? Now you can, with simple markup support for clarity. Built to be simple yet powerful, Logify WP features a clean layout of activity information, easy filtering and search options, and customizable role-based access controls. The user-friendly dashboard widget makes it easy to review recent critical activities at a glance. Key Features: Activity Log Overview: Get a complete chronological view of all logged activities across your WordPress site. Ideal for tracking patterns, diagnosing issues, and maintaining a transparent record of site events. User Audit Log: Drill down into individual user activity with dedicated audit trails. See exactly what each user did, when, and from where, perfect for accountability and compliance. Track Core WordPress Activities: Record actions on posts, pages, custom post types, taxonomies, plugins, themes, users, and more. Real-time Monitoring: Get instant insights into who made changes, when, and where, via a secure event log. Action Notes (New!): Add and search notes linked to actions for improved tracking and accountability. User Login Monitoring: Track user logins, logouts, and failed attempts with IP addresses. Media Management: Know who is uploading, editing, or deleting media files and when. Role-Based Access Control: Limit who can access the activity logs based on their WordPress role. Advanced Search & Filters: Filter logs by user, date, post type, and more to quickly find specific actions. User-Friendly Dashboard Widget: View the most recent critical activities in a quick summary. IP Address Information Integration: One-click access to IP information via WhatIsMyIpAddress.com. Who is Logify WP for? Logify WP is perfect for: – Agencies managing multiple client sites. – Freelancers who need a detailed audit trail for their client work. – IT Teams maintaining the security of large WordPress environments. – Website Administrators responsible for monitoring site activity and detecting unauthorized changes. – Developers looking for a simple yet powerful logging tool. – Everyday Website Users who want a simple way to monitor and track activity on their site. Logify WP is actively being developed, with new features in the pipeline. If you’d like to suggest features, submit them via https://logifywp.com/suggest/. Links Plugin Website Suggest Features Credits This plugin bundles DataTables, which is released under the MIT License. DataTables ©2007-2024 SpryMedia Ltd. Third-Party Services This plugin utilizes third-party services under certain circumstances: 1. WordPress Documentation Links When viewing logs, this plugin provides links to the official WordPress documentation corresponding to the version of WordPress that has been installed on your site. These links direct users to: Service URL: https://wordpress.org/documentation/wordpress-version/version- / Purpose: To offer quick access to documentation for the specific WordPress version installed. Data Sent: The WordPress version number is included in the URL. Privacy Policy: https://wordpress.org/about/privacy/ 2. IP Address Lookup This plugin allows users to click on logged IP addresses to view their origin information. When a user clicks an IP address in the log, it opens a link to an external service: Service Name: WhatIsMyIPAddress.com Service URL: https://whatismyipaddress.com/ip/ Purpose: To provide detailed information about the IP address’s geographical location and other related data. Data Sent: The IP address clicked in the log is included in the URL. Privacy Policy: https://whatismyipaddress.com/privacy-policy Terms of Use: https://whatismyipaddress.com/terms-of-use 3. IP Geolocation Service This plugin retrieves the geographical location of users based on their IP addresses to enhance log information. When a user’s IP address is logged, the plugin sends a request to an external service to obtain location details: Service Name: ip-api.com Service URL: http://ip-api.com/json/ Purpose: To obtain geographical location data (city, region, country) associated with the IP address for display in logs. Data Sent: The user’s IP address is included in the API request URL. Data Received: The service returns location information such as city, region, and country. Privacy Policy: https://ip-api.com/docs/legal Terms of Service: https://ip-api.com/docs/legal Please Note: By using these features, data (such as your WordPress version, or your users’ IP addresses) is sent to external services. We recommend reviewing your privacy policies and terms of use to ensure compliance with local laws and regulations.
Top keywords
- ip15×1.88%
- wordpress13×1.63%
- activity10×1.25%
- com10×1.25%
- service10×1.25%
- user10×1.25%
- address8×1.00%
- https8×1.00%
- ip address8×1.00%
- log8×1.00%
- data7×0.88%
- information7×0.88%
Stream – Activity Log & Audit Trail
Stream is a complete activity log and audit trail for your WordPress site: see what changed, who changed it, and when. From plugin activations to post edits, login attempts to new user creation, every user and system action is recorded in an audit log built for debugging, security monitoring, and compliance. Every logged action is displayed in an activity stream and organized for easy filtering by User, Role, Context, Action or IP address. Admins can highlight entries in the activity log—such as suspicious user activity—to investigate what’s happening in real time. Stream also lets you configure email alerts and webhooks for integrations like Slack and IFTTT, so your team knows the moment something goes wrong. Stream keeps its own logs healthy too: records are automatically purged on the retention schedule you choose, with batched deletion and orphaned-data cleanup that stay reliable even on very large sites. Stream is also AI-ready: its abilities are exposed through the WordPress Abilities API and MCP Adapter, so AI assistants and other tools can securely query your site’s activity records. For advanced users, Stream supports a network view of all activity records on your Multisite, exclude rules to ignore certain kinds of user activity, and a WP-CLI command for querying records. Stream is free and fully open source — development happens in the open on GitHub, maintained by XWP. With Stream’s powerful activity logging, you’ll have the information you need to responsibly manage your WordPress sites. Built-In Tracking Integrations For Popular Plugins: Advanced Custom Fields bbPress BuddyPress Easy Digital Downloads Gravity Forms Jetpack Two Factor User Switching WooCommerce Yoast SEO Built-In Tracking For Core Actions: Posts Pages Custom Post Types Users Themes Plugins Tags Categories Custom Taxonomies Settings Custom Backgrounds Custom Headers Menus Media Library Widgets Comments Theme Editor WordPress Core Updates Other Noteworthy Features: Multisite view of all activity records on a network Limit who can view user activity records by user role Set exclude rules to ignore certain kinds of user activity Live updates of user activity records in the Stream Export your Activity Stream as a CSV or JSON file WP-CLI command for querying records Configuration Most of the plugin configuration is available under the “Stream” → “Settings” page in the WordPress dashboard. Request IP Address The plugin expects the $_SERVER['REMOTE_ADDR'] variable to contain the verified IP address of the current request. On hosting environments with PHP processing behind reverse proxies or CDNs the actual client IP is passed to PHP through request HTTP headers such as X-Forwarded-For and True-Client-IP which can’t be trusted without an additional layer of validation. Update your server configuration to set the $_SERVER['REMOTE_ADDR'] variable to the verified client IP address. As a workaround, you can use the wp_stream_client_ip_address filter to adapt the IP address: add_filter( 'wp_stream_client_ip_address', function( $client_ip ) { // Trust the first IP in the X-Forwarded-For header. // ⚠️ Note: This is inherently insecure and can easily be spoofed! if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { $forwarded_ips = explode( ',' $_SERVER['HTTP_X_FORWARDED_FOR'] ); if ( filter_var( $forwarded_ips[0], FILTER_VALIDATE_IP ) ) { return $forwarded_ips[0]; } } return $client_ip; } ); ⚠️ WARNING: The above is an insecure workaround that you should only use when you fully understand what this implies. Relying on any variable with the HTTP_* prefix is prone to spoofing and cannot be trusted! Known Issues We have temporarily disabled the data removal feature through plugin uninstallation, starting with version 3.9.3. We identified a few edge cases that did not behave as expected and we decided that a temporary removal is preferable at this time for such an impactful and irreversible operation. Our team is actively working on refining this feature to ensure it performs optimally and securely. We plan to reintroduce it in a future update with enhanced safeguards. Contribute There are several ways you can get involved to help make Stream better: Report Bugs: If you find a bug, error or other problem, please report it! You can do this by creating a new topic in the plugin forum. Once a developer can verify the bug by reproducing it, they will create an official bug report in GitHub where the bug will be worked on. Translate into Your Language: Use the official plugin translation tool to translate Stream into your language. Suggest New Features: Have an awesome idea? Please share it! Simply create a new topic in the plugin forum to express your thoughts on why the feature should be included and get a discussion going around your idea. Issue Pull Requests: If you’re a developer, the easiest way to get involved is to help out on issues already reported in GitHub. Be sure to check out the contributing guide for developers. Thank you for wanting to make Stream better for everyone! View contributors here.