@Sam Bauers: Thanks, it really works.
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.
Hi livibetter, I’ll try out your bug fix later. Hopefully, it’ll work. I think it definitely is a bug about it choosing to “die”.
Instead you can make bbPress look like your blog. I stumbled onto Aditya Naik’s integratePress post.
http://www.adityanaik.com/integratepress-part-i/