Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: bbPress 1.0 Release Candidate 1

A note on the installer. I did an integrated install where wp and bb were in separate subdomains using separate db’s. I got it to work but in the advanced section of the cookie integration in the separate user database sections the field for user db password does not display. I made the following change in the install.php file and it worked:

$bb_install->input_text(‘user_bbdb_name’);

$bb_install->input_text(‘user_bbdb_user’);

$bb_install->input_text(‘user_bbdb_password’);

$bb_install->input_text(‘user_bbdb_host’);

$bb_install->input_text(‘user_bbdb_charset’);

$bb_install->input_text(‘user_bbdb_collate’);

instead of the original:

$bb_install->input_text(‘user_bbdb_name’);

$bb_install->input_text(‘user_bbdb_user’);

$bb_install->input_text(‘user_bbdb_password’, ‘password’);

$bb_install->input_text(‘user_bbdb_host’);

$bb_install->input_text(‘user_bbdb_charset’);

$bb_install->input_text(‘user_bbdb_collate’);

after that I was able to complete the install and the integration no proble. Hope this is helpful!

Skip to toolbar