Re: Wierd problems installing bbPress
By the way, my setup is fully under SSL.
I also changed the install directory to “bbpress”.
I discovered the reason for my first problem (line 30 in bb-login.php):
Up here:
$re == /bbpress/
$uri == https://host/bbpress/
if ( is_ssl() && 0 === strpos( $re, ‘/’ ) ) {
$re = bb_get_uri( $re , null, BB_URI_CONTEXT_HEADER );
}
Down here:
$re == https://host/bbpress/bbpress/
Changing first argument to bb_get_uri from $re to NULL solves the initial login redirect problem for me.
Still looking for the admin link issue.