Setup per Installation section…
1) Enable everything for Admin + save
2) define(‘SAVEQUERIES’,true); in wp-config.php + save
No output anywhere.
]]>Hello: My wordpress site is acting up. If example sometimes I am only able to view the visual editor in the html tab. The left side bar navigation does not work etc. I am sure there is a conflicting plugin or something happening. If you are interested please let me know. Thanks.
]]>Hi, Yes debug menu appears briefly and then the wp admin menu appears on top and hides it.
Anyone have an idea of how to fix this?
Thanks, Laurie
doesn’t work. after defining WP_DEBUG, true system returning this one
Fatal error. What can I do for you? What additional information you need?
Fatal error: Call to undefined method wp_pear_debug::loadclass() in /home/jgriner/www/site4/public_html/wp-content/plugins/wp-pear-debug/lib/PHP_Debug/PHP_Debug.class.php on line 58
I was doing some integration work and noticed that I could not click on the debug bar. This is because the plugin I was working on adds more html content using wp_footer. You should try as much as possible to have the debug output as the last thing before the closing </body> tag. Therefore I will be making use of the optional ‘priority’ argument in do_action calls. I made this an arbitrary 1000.
add_action('wp_footer',array('wp_pear_debug','show'),1000);
I am not sure if I should put this in the package as some people may for some reason or another want to have things outputted after the debug output.
I hope this can help anyone experiencing layout issues with this plugin.
]]>