Rating: 2 stars
Sometimes it works nicely, sometimes it takes 10 secs. to produce output, sometimes there’s no output at all. It disables logging so no idea what’s going on. 2+2 always works tho.
The Chrome extension is also spotty, sometimes opening the menu instead of the console (“inspect window” makes it work; sometimes). It also lacks a keyboard shortcut.
As an alternative for quick fixes, good ol’ Debug Bar + Debug Bar Console work reliably as a poor man’s REPL, as does Debug Toolkit to show a trace on the page. XDebug + PHPStorm for real work.
]]>Rating: 5 stars
Thank you so much.
]]>Rating: 5 stars
As soon as I realized that Chrome extension is off in incognito mode by default and enabled it, I could enter password and got it to work immediately.
]]>Rating: 5 stars
Very easy to set up and it has saved my life.
]]>Rating: 5 stars
This plugin is very useful to debug php variable!
And show me stack !
Really Thank you !
]]>Rating: 5 stars
Hardly you find a tool in www.remarpro.com plugin repo that is technologically a masterpiece.
I am thrilled with the power it provides to the devs who really face issues in debugging just like me.
By using this tool I no longer need to go here and there to see the debug info. It makes my life super easy.
P.S. I am also looking forward to contributing to this plugin in any possible way.
]]>Rating: 5 stars
this is what I wanted, does what it should for me
]]>Rating: 5 stars
Keep up with the nice work!
]]>Rating: 5 stars
It works and it’s easy to set up!
#gamechanger
Instructions here https://gopangolin.com/wordpress-debugging-php-console/
THANK YOU!!!!
]]>Rating: 5 stars
Great tool for debugging wordpress plugins. Use it all the time!
]]>Rating: 5 stars
This plugin is great for testing and debugging. Full stack trace, plus you learn a lot about how WordPress works! Massive kudos and thanks to Fulvio. ??
]]>Rating: 5 stars
A wonderful plugin for debugging combined with the Chrome PHP Console extension.
]]>Rating: 5 stars
good
]]>Rating: 4 stars
The plugin did not work for me (the Class ‘PC’ was not available) until I added these two lines to my functions.php file:
require_once $_SERVER['DOCUMENT_ROOT'].'/wp-content/plugins/wp-php-console/vendor/autoload.php';
if( !class_exists( 'PC', false ) ) PhpConsole\Helper::register();
now I can use e.g.
PC::debug($_SERVER);
throughout my wordpress code for debugging.
It would be cool though to be able to disable those annoying debug-popups and display the stuff in the console only.
]]>Rating: 5 stars
Fantastic plugin and works great with Query monitor!
]]>Rating: 5 stars
Excellent
]]>Rating: 3 stars
The plugin is not working, and returns a fatal error
]]>Rating: 5 stars
If you want to debug PHP in browser use this plugin, also its very powerful by debugging AJAX.
]]>Rating: 5 stars
As a WP beginner, I was looking around for php debug possibilities. Up to now, I found the recommendation to define('WP_DEBUG', true);
in wp-config.php
. This plugin brings us a much further. We can log $variable values simply by writing trigger_error(print_r($variable, true));
We see the variable, the call stack and timestamp.
Great.
The only WP configuration required is installing the plugin and defining a password.
I assume it is secure when we enter our IP address.