by Fulvio Notarstefano
4.7 (19 reviews)
WP PHP Console
An implementation of PHP Console as a WordPress plugin. Use Chrome Dev Tools to debug your WordPress installation!
Tested up to WP 5.5 (Current: 6.9)
v1.6.0
Current Version v1.6.0
Updated 5 years ago
Last Update on 09 Nov, 2020
Synced 11 hours ago
Last Synced on
Rank
#8,378
+15 this week
Active Installs
700+
-4.1%
KW Avg Position
N/A
—
No change
Downloads
57.6K
+4 today
Support Resolved
0%
—
No change
Rating
94%
Review 4.7 out of 5
4.7
(19 reviews)
Next Milestone 800
700+
800+
384
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 90 more installs to reach 800+
Rank Changes
Current
#8,378
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.7
19 reviews
Overall
94%
5
16
(84%)
4
1
(5%)
3
1
(5%)
2
1
(5%)
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.6.0
- Last Updated
- Nov 09, 2020
- Requires WP
- 3.6.0+
- Tested Up To
- 5.5
- PHP Version
- 5.6 or higher
- Author
- Fulvio Notarstefano
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.7
- Reviews
- 19
- 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 WP PHP Console
No, but it makes use of Sergey's PHP Console library as it is.
No it doesn't, unless PHP Console browser extension is ported, for example, as a Firefox add-on.
You can but it is probably not a good idea. You should do your debugging and testing on a development/testing environment on a staging server or local machine. Likewise, you normally wouldn't want to turn on PHP error reporting or set WP_DEBUG to true in a live site as you wouldn't want to display error information to public. Furthermore, PHP Console allows execution of any remote PHP code through terminal - for this you can set a strong password and restrict the IP address range to access the terminal, but still it's not advisable. Besides putting your site at risk, you will also add more load to your server.
Generally no, WP PHP Console will intercept those. However, it's always a good idea to keep an eye on the logs too. Furthermore, WP PHP Console is unable to catch many server errors that result in a 500 error code on the browser. For those you may have traces left in the debug.log file.
The JavaScript console prints PHP variables as JavaScript variables. Associative PHP arrays such as ['key1' => 'var2', 'key2' => 'var2', ... ] are shown as objects; automatically indexed arrays like [ 'var1', 'var2', ... ] are shown as arrays. Fatal error: Class 'PC' not found in 'my code' PC::debug( $my_var, $my_tag ) can only be called after the WordPress core included the WP PHP Console plugin. You could move your debug code or either do something like // delay use of PC class until WP PHP Console plugin is included add_action( 'plugins_loaded', function () use ( $my_var ) { // send $my_var with tag 'my_tag' to the JavaScript console through PHP Console Server Library and PHP Console Chrome Plugin PC::my_tag( $my_var ); }); or // PHP Console autoload require_once dirname( __FILE__ ) . '/wp-php-console/vendor/autoload.php'; // make PC class available in global PHP scope if ( ! class_exists( 'PC', false ) ) PhpConsole\Helper::register(); // send $my_var with tag 'my_tag' to the JavaScript console through PHP Console Server Library and PHP Console Chrome Plugin PC::my_tag( $my_var );