by Jack Arturo
4.8 (18 reviews)
Fatal Error Notify
Receive email notifications when errors occur on your WordPress site.
Compatible with WP 6.9.4
v1.5.4
Current Version v1.5.4
Updated 1 month ago
Last Update on 12 Feb, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#3,025
—
No change
Active Installs
6K+
—
No change
KW Avg Position
95.5
+0.5 better
Downloads
89.3K
+6 today
Support Resolved
100%
—
No change
Rating
96%
Review 4.8 out of 5
4.8
(18 reviews)
Next Milestone 7K
6K+
7K+
221
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 750 more installs to reach 7K+
Rank Changes
Current
#3,025
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.8
18 reviews
Overall
96%
5
16
(89%)
4
1
(6%)
3
0
(0%)
2
1
(6%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
2
Total Threads
2
Resolved
0
Unresolved
100%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.5.4
- Last Updated
- Feb 12, 2026
- Requires WP
- 5.0+
- Tested Up To
- 6.9.4
- PHP Version
- 7.4 or higher
- Author
- Jack Arturo
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.8
- Reviews
- 18
- Support Threads
- 2
- Resolved
- 100%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,716
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about Fatal Error Notify
Fatal Error Notify Pro also includes integrations with Gravity Forms, WooCommerce, WPForms, WP Fusion, and WP Mail SMTP and can send notifications when errors are logged in those plugins.
Can I exclude specific errors?
Yes, you can use the filter fen_ignore_error, like so:
function fen_ignore_error( $ignore, $error ) {
if( $error['file'] == '/home/username/public_html/wp-includes/class-phpass.php' ) {
$ignore = true;
}
return $ignore;
}
add_filter( 'fen_ignore_error', 'fen_ignore_error', 10, 2 );
The $error variable is an array containing:
$error['type']: (int) The PHP error code
$error['message']: (string) The error message
$error['file']: (string) The path to the file that triggered the error
$error['line']: (int) The line number that triggered the error
Does it support WP CLI
Yup, you bet! You can update the plugin settings using WP CLI, for example to set a default list of error levels, or a notification email address.
The two methods are get_option and update_option. For example:
wp fatal-error-notify get_option slack_notifications
Can I exclude specific errors?
Yes, you can use the filter fen_ignore_error, like so:
function fen_ignore_error( $ignore, $error ) {
if( $error['file'] == '/home/username/public_html/wp-includes/class-phpass.php' ) {
$ignore = true;
}
return $ignore;
}
add_filter( 'fen_ignore_error', 'fen_ignore_error', 10, 2 );
The $error variable is an array containing:
$error['type']: (int) The PHP error code
$error['message']: (string) The error message
$error['file']: (string) The path to the file that triggered the error
$error['line']: (int) The line number that triggered the error
Does it support WP CLI
Yup, you bet! You can update the plugin settings using WP CLI, for example to set a default list of error levels, or a notification email address.
The two methods are get_option and update_option. For example:
wp fatal-error-notify get_option slack_notifications
wp fatal-error-notify update_option notification_email email@domain.com
You can also update options on multiple sites using xargs:
wp site list --field=url | xargs -n1 -I {} sh -c 'wp --url={} fatal-error-notify update_option notification_email email@domain.com'
If you are updating options that are stored as arrays (for example levels or plugins) you can use JSON-formatted values. For an example, use get_option first on the field you are trying to update.
wp site list --field=url | xargs -n1 -I {} sh -c 'wp --url={} fatal-error-notify update_option notification_email email@domain.com'
If you are updating options that are stored as arrays (for example levels or plugins) you can use JSON-formatted values. For an example, use get_option first on the field you are trying to update.