In order to be able to count all action hooks and filter invocations oik-bwtrace will, if permitted, automatically install a Must-Use version of the plugin ( _oik-bwtrace-MU ). It will start counting all action hooks and filters from the muplugins_loaded action.
If you really want to trace ALL the action hooks and filters you need to activate the counting logic even earlier. This can be achieved by editing the db.php
Drop-In plugin. It will need to contain the following code.
You appear to be a bot. Output may be restricted
<br /> if ( defined( "BW_COUNT_ON" ) && true == BW_COUNT_ON ) {<br /> if ( function_exists( "bw_trace_count_plugins_loaded" ) ) {<br /> bw_trace_count_plugins_loaded( BW_COUNT_ON );<br /> }<br /> }<br />