Re: Unable to login to BBPress admin
First, thanks for the reply!.
I’m a little weary right now and just want to wait until v1.0 of BBPress is released before I make the move you suggested. Here’s what I did (after hours of trying to remember what I did before and doing hours of research) and it worked like a charm and I can now access my BBPress admin with no problems…
In bb-config.php between…
/* Stop editing */
…and…
if ( !defined(‘BB_PATH’) )
define(‘BB_PATH’, dirname(__FILE__) . ‘/’ );
require_once( BB_PATH . ‘bb-settings.php’ );
add the following code…
define(‘WPPATH’, dirname(dirname(__FILE__)) . ‘/’);
require_once(WPPATH . ‘wp-config.php’);
Worked like a charm (I’m still using the stable version of BBPress (v9.04).
Hope this helps someone here:)
– BPfan