If you changed from 1.3 to 2.2 in Apache and it worked before the upgrade, it must have something in there that it doesn’t like with the Mod Rewrite handling. I am not sure myself, but I would change my .htaccess in the bbPress root folder of http://www.canadianbookclubs.com/forums/ to have only:
Options +MultiViews
Nothing else. Try it in that and in your http://www.canadianbookclubs.com/bkrv/ test run with the new version as well. Either way, it should work for one of them. That works best with most servers I have used and they are using Apache 2+. Try that out maybe and if not, take Fel64’s suggestion and put the contents of what is outputted by: /bb-admin/rewrite-rules.php
Trent
Comment out this line in the plugin to get page 1 showing.
unset($links[0]);
That’s line 82 in version 1.0.2
Currently i’m trying to develop something using wordpress & bbpress.
Everything flows pretty good when talking on functionality and the rest of features, but there is a problem.
Actually 2 problems. First I already posted here: http://bbpress.org/forums/topic/867
And now the second one:
The final release has to be in another language but english. It’s true, I found no troubles translating bbpress in my language and the rest of updated wordpress. But after what I’ve integrated both of api’s: the wordpress and bbpress; this resulted in the following error:
Fatal error: Cannot redeclare class streamreader in /var/www/pm/forum/bb-includes/streams.php on line 26
I suppose it’s because of the translations, cause when I did not defined BBLANG, everything worked well.
After a bit I thought, that a solution for my problem can be joining both of the bbpress and wordpress translation .mo’s and defining just WPLANG for my language settings. That worked, but I dont see this as a pretty simple and accessible solution for everybody!
I would be glad getting some help on that, If there is any other more easier solution, that would be cool.
I switched back to the first version, but the member list was still messed up. So I emptied the bb_online table, and now it doesn’t work at all.
Oops.
Thanks for your replys.. i’v checked to post-form.php, and it is present in the “crystal” theme.
I tried to switch back to the default theme, and suddenly it worked! Then I switched back to crystal theme at overwrited the original theme files (perhaps i’v done something with the files before).. but no, it still dosen’t work as it should
If Trent’s theory is correct (and it sounds good) I think the best thing for you to do is to plonk that javascript reference in a plugin (that’s certainly the neatest thing). This is probably the code you need.
<?php
/*
Plugin Name: Javascript Spoilers
Plugin URI: [Enhanced SS page]
Description: Makes little javascript buttons to show and hide text in spoiler tags. A port of a WP plugin.
Author: [Author of Enhanced SS]
Version: 0.1
Author URI: [Author of Enhanced SS homepage]
*/
function ess_addjs()
{
$plugin_uri = bb_get_option('uri') . str_replace(BBPATH, '', BBPLUGINDIR);
$js_uri = $plugin_uri . 'enhancedss.js';
echo '<script type="text/javascript" src="' . $js_uri . '" />' . "n";
}
add_action('bb_head', ''ess_addjs);
?>
You will have to modify the javascript filename from enhancedss.js to whatever it’s actually called.
Copy and paste all that into a plain-text file, call it something.php and upload it to your plugins folder. Also upload the enhancedss.js file to that folder.
Almost all that code was totally ripped off from Sam Bauer’s Page links plugin.
I think so. Integration has to be done from the very start. You have to set up your config.php properly before install (with the database pointed at your WP database) else it won’t integrate. Maybe I’m wrong; does anyone else know?

Okay, pretty simple – see here:
http://mikecarey.net/?p=187#comments
Scroll down a dozen comments from the top to the one dated March 18th, 2007 12:36 pm and see the ‘Show’ drop-downs. That’s a spoiler plugin that essentially takes any text with <spoiler> tags around it and inserts the drop-down function.
I’m either looking for something like that, or alternately jury-rigging a custom tag (if that’s even possible) to let my users post, say, black text on a black background (in a blockquote box) that you have to highlight to see.
Make a little more sense?
Matt
Not sure what you are trying to do here. Explain to me like I am 5 years old what you are trying to get done because I act that way…. 
Trent
You’re an amazing guy, Mr. Trent.
We’ll give you all the time in the world, of course, and simply be grateful if/when you’re able to cobble something together!
It was scheduled to be out pretty soon here, but the number of tickets keeps increasing. Usually, at some point, mdawaffe just cuts the tickets to the next version and has a release. It will be soon I would imagine…..maybe within 30 days, but don’t quote me on that……
Trent
It will be more like how wordpress.com does it:
[youtube=videolink]
Trent
The 404s seem to me to probably come from your config.php and .htaccess files not being set up accordingly. If you have mod_rewrite set to true in your config.php (which you do) then you must update your .htacess file.
Go to http://www.canadianbookclubs.com/bkrv/bb-admin/rewrite-rules.php (probably) and copy the output into your forum folder’s .htaccess file. Try again.
You said something about a hacker?
As far as I know each theme must be in a sub-folder of my-templates.
No, it isn’t.
Stylesheets are what determines the look of a forum. These are the stylesheets the WP.com forums use:
http://wordpress.com/forums-theme/wpcom/forums.css
http://wordpress.com/wp-content/themes/h3/style.css?1169109548
http://wordpress.com/wp-content/themes/h3/hack.css
I do not think they would mind if you use them, as long as you give credit. You could ask someone.
Or, instead, you could start a new theme, edit your new style.css file and try to replicate what they have by try-and-error.
Check forum/bb-templates/kakumei/post-form.php is present on your server. That is the only thing I can think of.
You both ask very reasonable questions
Basically, my forum is such that people tend to sign up just to ask 1 question and disappear. So over the years it has amassed about 700 users with 1-2 posts, tops.
My current setup is pretty much a mirror of the old forum (it’s at my site at /bbpress if you want to see the design in progress), which can of course work fine, but being the anal type I was thinking of starting this forum with a “clean slate”, as it were. Maybe 2-3 users would be returning and bear the burden of re-registering.
But I guess I’ll leave it be. As new posts come in the old ones will “flush” off the front page anyway. Thanks for the insights.
This is very interesting to me. How about these ideas?
For the close a forum, I don’t know how you would do that. There’s nothing I know of in the bb_forums table that marks it open or closed. The best I think you could do is mark the topics closed. To do that with SQL, you could do something like
UPDATE bb_topics
SET topic_open=0
WHERE topic_id IN
(your comma separated list of topic_ids)
You could drop the WHERE part if you wanted to mark all existing topics as closed. Before you do anything with SQL though, be sure you have a backup of the data.
I can see why you want to take a snapshot of the old forums and mark them “archived/old” but, I would assume if you are moving things from phpBB to bbPress that your forum structure is going to be similar, so closing the forums to new topics wouldn’t make sense anyway.
Another option is to create a new forum called “phpBB Archive” or something then move all the topics and posts over to that “archive” forum, then create your forum hierarchy again in bbPress like it was in phpBB (i.e. World News, World Labs, Support, etc.)
For the users, why not just change all the passwords? That would make the usernames still valid, so no one else could re-register as an existing name, no one could log in with the old name, and all the existing posts would still be attributed to the original poster.
Just my thoughts: maybe they’ll be useful. Good questions though…
http://www.ungodum.se
A swedish forum for teenagers.
- Quote
- allow images
- avatar
- emoticons
- memberlist
- post-count
- sitemap
I’ve also made a “plugin” for my menu. Instead of change the code in the core-files I made a plugin for the links. I think it’s not that professional but it works.
Hi..
I’v installed bbPress correctly (i guess) and intergrated it with WP, and it words fine. The problem is, that the link: http://stasi.se/forum/?new=1
that comes up, when I push “Add new / Tilføj ny (danish) » “
The a form should appear (like the one i then buttom), but all that appears is a info “Hello user” edit etc.. no form..
Someone how know whats wrong, or do you know another link/file that I could redirect the link to, so I will word?
I’v created a user: testtest pass: 0b28fc
– so you can try to login at se the faoult with you own eyes..
I hope someone has a golden solution
//And sorry, that the page is translated to danish
I’ve never seen it as a checkbox, it’s always been a text area for me. Look here: http://forums.loinhead.net/profile/fel64/edit ~ Err, you probably can’t edit accounts on my forum. Nevermind.
But really, I have the same HTML output as you.
You have Update Profile‘ed, haven’t you?
I keep getting flagged as a Bozo.
You shouldn’t be flagged again if Akismet is not running. Strange.
I might do it sometime, but for now I’d say just use the Comment Quicktags – press a button and the code is inserted, if your problem is remembering the codes.
https://bbpress.org/plugins/topic/14?replies=6
Demo here: http://forums.loinhead.net/topic/the-purty-image-associator/page/2?replies=52
I get these errors:
bbPress database error: [Table ‘mpmorg2_bbpress.bb_online’ doesn’t exist]
SELECT * FROM bb_online WHERE user_id = 1 LIMIT 1
bbPress database error: [Table ‘mpmorg2_bbpress.bb_online’ doesn’t exist]
INSERT INTO bb_online (user_id, activity) VALUES (‘1’, ‘2007-03-24 06:06:37’)
read me says:
“You’ll maybe get an error if you browse your forum the first time after you’ve installed the plugin. This is normal.
If you keep getting errors, try setting $mysql41 to false maybe it works then, otherwise don’t hestitate to contact me.”
How do I set this to false?
forum is here: http://www.mpm.org.au
EDIT: It’s okay, it just took some time for the errors to disappear.
Yes, you are right; some people will not want to use this.
But i mean, this would be an option, like in WordPress.
As bbPress’ structure is very similar to WordPress; adding that option to bbPress won’t be so hard, i guess.
http://rbl.babbage-tech.com/forums/
I should have kept a list of plugins and the only real change to the core code was I removed the bozo check.
Got now this:
<?php
require_once('../bb-load.php');
global $bbdb, $bb_table_prefix;
$id = $_POST['id'];
$content = $_POST['content'];
$bbdb->query("UPDATE ".$bb_table_prefix."menu SET item = '". $_POST['content'] ."' WHERE item_id = '". $_POST['id'] ."'");
echo stripslashes(htmlentities($content));
?>
This should work?