Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,269
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,924
- Showcase
- 3,252
-
I spent a whole day trying to resolve the same problem, until I came accross a sollution. Try the following improvements, worked for me.
In the bb-settings.php version 0.8.3 line 172 find the code:
if ( is_callable( ‘glob’ ) )
foreach ( glob(BBPLUGINDIR . ‘_*.php’) as $_plugin )
require($_plugin);
Replace it with:
if ( is_callable( ‘glob’ ) ) {
$pluginarray = glob(BBPLUGINDIR . ‘_*.php’);
if ($pluginarray)
foreach ( $pluginarray as $_plugin )
require($_plugin);
}
The source (in German): http://www.brusdeylins.info/bbpress/problem-in-bb-settings/#comment-67