Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Question about rendering time


_ck_
Participant

@_ck_

I’ve put 0.16 into the SVN, I think it updates on the hour.

Once you have 0.16 installed, go edit bb-settings.php in the bbpress root and around line 157 change that section so you add the line bb_benchmark_template_timer('',$plugin.' loaded');

like so:

if ( $plugins = bb_get_option( 'active_plugins' ) )
foreach ( (array) $plugins as $plugin ) {
if ( file_exists(BBPLUGINDIR . $plugin) ) {
require( BBPLUGINDIR . $plugin );
bb_benchmark_template_timer('',$plugin.' loaded');
} }
do_action( 'bb_plugins_loaded' );
unset($plugins, $plugin);

.

That will give you the super detailed output, so if there is a single plugin that is consistently slowing your page load down, you might be able to spot it.

Skip to toolbar