I had the same idea but commented out the entire contents of the login-form.php.
Removing or renaming will cause and error so leave it in place. Just open it and comment out the contents from top to bottom. It’s the login form shown on the front page. This way when you are logged in, you will still see the your name and the admin link and logout option. This is working for me anyway.
Just want to say THANK YOU!!
I gave up converting my phpBB forum months ago:
https://bbpress.org/forums/topic/a-phpbb-to-bbpress-database-converter/page/2
But by utilizing the info here (and buy editing the SQL file by hand), I was able to get my forum into the very latest bbPress… it’s even integrated with WP.
http://www.judyhenskefan.com/forums/
Now I get to work on a new design for the forum and blog (as well as add lots of plugins to the new forum).
Thanks again everybody!
Working now. As this was a new data base with no content yet, I dropped the database, made a new one, installed wordpress, then bbpress. All seems to be working correctly. I must have put wp_ in step 1 the first time instead of leaving it at bb_. No problems with logging in like I had when I tried the upgrade. Thanks.
Did you already follow these instructions for getting permalinks to work, in general? If permalinks at all will work, then slugs will work as well.
https://bbpress.org/documentation/faq/#pretty-permalinks
Why isn’t bbpress installed in a subdirectory of WordPress (that’s easiest for integration)?
And what does this mean exactly:
> WordPress 2.5 is installed in example.com/WordPress/
> with the actual public blog up one level at example.com/
Do you have two blogs, one or both of them WordPress?
I’m not sure if people don’t know how to do it, or if it’s not possible, or if I’m just not explaining it clearly enough… So I’ll try again:
Right now, physically, the folders are arranged like so:
root.com/folder/bbpress
The address:
root.com/folder/bbpress
also works and goes to the forum just fine.
However, I want to keep the physical folders arranged that way, and make the address:
root.com/bbpress
WordPress itself has the exact same option under “Settings” by changing “Blog address (URL)” to whatever.
Any help would be appreciated!
I’ve uploaded the bbPress files to example.com/forum/ and WordPress 2.5 is installed in example.com/WordPress/ with the actual public blog up one level at example.com/
When I go visit example.com/forum/ or even example.com/forum/admin/install.php all I get is a blank post from the WP site that reads “Sorry, no posts matched your criteria.”
What do I need to change in order to make the installation run?
WordPress created this .htaccess file and placed it in webroot, and I’m guessing this is the problem:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Any idea on why I can’t use “pretty” permalinks (read above posts)?
Gene
This looks good. I’m looking forward to the next version.
Any chance of you upgrading the Private Forums plugin?
The only disadvantage is that I can’t access the Admin features from the front page, I have to add bb-admin/ at the end of the address.
“yes this will work only if you have bbpress running inside of wordpress. But I will release a next version which automatically do it”
I do have bbpress running inside of WP and still get the error…
Gene
Hi,
I added a bbPress forum to my WP 2.5 Blog and being that I didn’t want users to either login nor register from the forum section, I modified the template’s header.php file to comment out <?php login_form(); ?>.
If there’s another way of doing this, let me know.
Thanks,
Gene
hi, i have a bbPress installation at http://ravidreams.net/forum/ . The main language of the forum is Tamil and when i get email notifications the characters in the subject line are unreadable..seems like some another language.. I am hosted by GoDaddy. Any solution?
Thanks
@_ck_ yes this will work only if you have bbpress running inside of wordpress. But I will release a next version which automatically do it.
My host has disabled sendmail (because they like to make things a pain in the ass for everyone, apparently), so I have to find workarounds for everything I have installed. This plugin for WP has saved my bacon for my main site, but I haven’t found a solution for bbPress and my php fu is weak.
Hi everyone,
Currently my forum is located in something like:
example.com/dir/forum/
But I want to rewrite it to be like this:
example.com/forum/
Since WordPress can do that, I was hoping bbPress can too, but I’m not sure how. Is there some setting I can change?
Also secondary to that is that if there is no setting for such an option, can I just move the “forum” directory out of “dir” and into the root, and change the “bbPress address” to force it to physically be like “example.com/forum/” or would that screw things up?
Thanks a lot everyone
Hi,
I installed a bbpress + wp thing and something screwed up a little with the bbpress part, but I think I can fix it if someone could please tell me how to change the “bbPress address (URL)” that comes in the General Settings directly. By that I mean is this value stored somewhere in a file or database that I can directly change, rather than through the General Settings menu?
Thanks
that’s what i did, but it doesn’t work. all users that registered with bbpress before the update, are shown as “anonymous”. and also, some of the other users are getting mixed up …
I’am currently working on a Dutch translation file for bbPress, zo maybe today, otherwise today it will be come available
I also get the same error…
I hope the author will come up with a fix, this would be a handy plugin.
Cheers,
Gene
Where can I download futurekind?
Thanks Rune. I actually don’t like to hack admin files… Wyvn’s suggestion did the trick. I just made note of the change so I can do it again when I upgrade next.
Maybe you can submit that for a future version of bbPress.
I have spent the last couple of hours on the forums trying to figure out how to actually do this when the existing blog and forum are currently seperate databases.
My situation is as follows:
– wordpress 2.3 blog with no users (except admin)
– bbpress 0.8 forum with many users
I want to get to a wordpress 2.5 blog and a bbpress 0.9 forum with an integrated database.
I think the steps are:
1. upgrade wordpress to 2.5
2. upgrade bbpress to 0.9
3. then?…. how do I combine the database?
Or can I keep the seperate databases and still get the benefits of combined cookies and users carried from wp to bb and vice versa? If so, how do I bootstrap the wp database with the existing bb users?
Any help out there?
Well, if you like to hack you admin files, you can add the following code to the options-general.php file just after line 143, making this code start on line 144;
<label for="avatars_size">
<?php _e('Gravatar Size:'); ?>
</label>
<div>
<select name="avatars_size" id="avatars_size">
<?php
$selected = array();
$selected[bb_get_option('avatars_size')] = ' selected="selected"';
?>
<option value="16"<?php echo $selected[16]; ?>><?php _e('16 px'); ?></option>
<option value="32"<?php echo $selected['32']; ?>><?php _e('32 px'); ?></option>
<option value="36"<?php echo $selected['36']; ?>><?php _e('36 px'); ?></option>
<option value="48"<?php echo $selected['48']; ?>><?php _e('48 px'); ?></option>
<option value="80"<?php echo $selected['80']; ?>><?php _e('80 px'); ?></option>
<?php
unset($selected);
?>
</select>
</div>
And in the bb-includes/template-functions.php file, after line 1198 you can add this;
$size = bb_get_option('avatars_size');
Then you can change the size in the admin section, and the correct size will show with the posts.
Or you can download the edited files here
—
Rune