Exact same problem. The header and footer of the admin menu wouldn’t load until I modified the file includes to go to the correct directory.
Modified bb-admin/includes/functions.bb-admin.php
Replaced: include( ‘admin-header.php’ );
With: include( dirname(__file__).’/../admin-header.php’ );
and
Replaced: include( ‘admin-footer.php’ );
With: include( dirname(__file__).’/../admin-footer.php’ );
Can’t work out why it was doing this, file permissions? something to do with the rewrite rules? *shrug*
Exact same problem. The header and footer of the admin menu wouldn’t load until I modified the file includes to go to the correct directory.
Modified bb-admin/includes/functions.bb-admin.php
Replaced: include( ‘admin-header.php’ );
With: include( dirname(__file__).’/../admin-header.php’ );
and
Replaced: include( ‘admin-footer.php’ );
With: include( dirname(__file__).’/../admin-footer.php’ );
Can’t work out why it was doing this, file permissions? something to do with the rewrite rules? *shrug*