I’m having the same problem and I believe there are a couple of problems (0.7):
1) b2config.php line 332 (all approx, I may have modified it, sorry)
$abspath = getenv(‘DOCUMENT_ROOT’) . $relpath . ‘/’;
$b2inc = “/$b2inc”;
However, in b2login.php right at the top you have:
require_once($abspath.$b2inc.’/b2template.functions.php’);
obviously this is going to end up wrong because $abspath ends with ‘/’ therefore you’ll have something like:
/var/www/html/wordpress//b2inc/b2template…
the double // (one from $abspath one from “/$b2inc”) leads to a bad path.
if you take the / from the end of $abspath, you’ll most likely run into problems in places like wp-admin/b2edit.showpost.php:231 because:
include($abspath.’blog.header.php’);
it’ll obviously search for:
…/html/wordpressblog.header.php (no / in between).
Hopefully all these problems would be eventually fixed.
Thanks!