by Jack Arturo
4.9 (17 reviews)
Fatal Error Notify
Receive email notifications when errors occur on your WordPress site.
Tested up to WP 6.5.0 (Current: 6.9)
v1.5.3
Current Version v1.5.3
Updated 2 years ago
Last Update on 12 Jan, 2024
Synced 7 hours ago
Last Synced on
Rank
#3,053
—
No change
Active Installs
6K+
-7.2%
KW Avg Position
76
+0.3 better
Downloads
83.1K
+2 today
Support Resolved
0%
—
No change
Rating
98%
Review 4.9 out of 5
4.9
(17 reviews)
Next Milestone 7K
6K+
7K+
188
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,053
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.9
17 reviews
Overall
98%
5
16
(94%)
4
1
(6%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| fatal | 52 | — | Tag | 19 hours ago |
| debugging | 58 | — | Tag | 19 hours ago |
| reporting | 118 | — | Tag | 19 hours ago |
Unlock 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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.5.3
- Last Updated
- Jan 12, 2024
- Requires WP
- 4.6+
- Tested Up To
- 6.5.0
- PHP Version
- N/A
- Author
- Jack Arturo
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.9
- Reviews
- 17
- Support Threads
- 0
- Resolved
- 0%
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,736
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Query Monitor - The developer tools panel for WordPress
200K+ installs
#255
Header and Footer Scripts
200K+ installs
#258
Performance Lab
200K+ installs
#267
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_ingore_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_ingore_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.