When integrating WP and BB
I read that you need to put
$bb->WP_BB = true;
if (file_exists('../wp-blog-header.php'))
require_once('../wp-blog-header.php');
else
if (file_exists('../../wp-blog-header.php'))
require_once('../../wp-blog-header.php');
in BB-config.php
Is there something that I can put in wp-config.php that works the opposite?
I'm trying something...