Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Installation Problem – Cannot modify header information

In bbPress version 0.8.3.1 open file: bb-admin/plugins.php and find:

if ( is_callable( 'glob' ) ) {
foreach ( glob(BBPLUGINDIR . '_*.php') as $_plugin ) {
$_data = bb_get_plugin_data( $_plugin );
$_plugins[$_plugin] = $_data ? $_data : true;
}
}

Replace with:

if ( is_callable( 'glob' ) ) {
$pluginarray = glob(BBPLUGINDIR . '_*.php');
if ($pluginarray)
foreach ( $pluginarray as $_plugin )
require($_plugin);
}

I’m not sure if this will work.

Skip to toolbar