Forum Replies Created
-
In reply to: Fixing Plugin Browser Plugin
Thanks Guatam for the fix: https://bbpress.org/forums/topic/plugin-browser-fixed-to-be-compatible-with-bbpress-10-12
Looks great awesome work! Thanks for your help with this, it makes managing bbpress so much easier.
In reply to: Pagination bug?I have the same issue, have you found a resolution? thanks!
In reply to: Navigation errorI have the same issue, have you found a resolution? thanks!
In reply to: Fixing Plugin Browser PluginI’m really enjoying using this plugin thanks for the fix! However I do notice that it is not recognizing my local version in the column which will make upgrading harder. I did some searching around for a fix for this but the ones that i did find were old and don’t work anymore. Is this another case of including a missing function? thanks for the help!
In reply to: Basic integration screencastI wrote up a quick outline of the screencast that may be helpful:
http://1isa2isb.com/wordpress-and-bbpress-integration
I found that I would forget some of the non-intuitive steps but not want to re-watch the whole screencast.
In reply to: bbPress 1.0 Release Candidate 1A 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!