Forums
-
- Forum
- Posts
-
- Installation
- 28,434
- Troubleshooting
- 62,513
- Themes
- 10,431
- Plugins
- 15,340
- Requests & Feedback
- 14,964
- 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.