Forums
-
- Forum
- Posts
-
- Installation
- 28,420
- Troubleshooting
- 62,488
- Themes
- 10,427
- Plugins
- 15,336
- Requests & Feedback
- 14,959
- Showcase
- 3,256
-
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.