C
by Dan Bahrami
5 (5 reviews)
Custom Error Log
A tool for logging and monitoring custom errors, making debugging complex PHP a breeze.
Tested up to WP 4.0.0 (Current: 6.9.4)
v1.1.1
Current Version v1.1.1
Updated 11 years ago
Last Update on 23 Oct, 2014
Refreshed 6 hours ago
Last Refreshed on
Rank
#20,451
+7 this week
Active Installs
50+
—
No change
KW Avg Position
N/A
—
No change
Downloads
4K
+2 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(5 reviews)
Next Milestone 60
50+
60+
1,137
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 4 more installs to reach 60+
Rank Changes
Current
#20,451
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
5.0
5 reviews
Overall
100%
5
5
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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.1.1
- Last Updated
- Oct 23, 2014
- Requires WP
- 3.0.1+
- Tested Up To
- 4.0.0
- PHP Version
- N/A
- Author
- Dan Bahrami
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 5
- 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,717
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
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 Custom Error Log
As they say 'Necessity is the mother of invention'... I was recently developing a Wordpress site which imported data from a CRM in the background and used that data to create users, posts, taxonomies etc. I started using the standard PHP error log but quickly found that the errors didn't have enough specific information to make them useful. I needed to know exactly what information wasn't being imported properly and why so I created this plugin to allow me to customise the information stored in each error. There are other ways, like using full debugging tools but I think it's easier to have a simple, Wordpress native tool.
It's simple, you place the following function in your theme/plugin where you want to log an error... log_error( $message ); Replace $message with whatever error message you want to log for example if you're adding a new user you could do this... $user_id = wp_create_user( $user_name, $password, $user_email ); if( is_wp_error( $user_id ) ) { $error_response = $user_id->get_error_message(); $mesage = "Unable to create user with username: " . $user_name; $message .= " password: " . $password; $message .= " The following error occurred: " . $error_response; log_error( $message ); }