Let us give him some more time…
I am over my head when combining WP and bbPress functions and know next to nothing with Ajax. Hopefully mdawaffe (Michael) will see this post or head over to https://bbpress.org/about/development/ and see if you can contact him another way!
Trent
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
I mis the page 1
I know clicking the title you go to page 1, but we are all known with the vbulletin way…
So if it has one page, dont show the page tags
If it has two, show the page 1 and page 2 tags
etc etc
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.
“If you have already installed bbPress then I think you will have to get rid of it and install it again, but integrating this time.”
Is this true?
mdawaffe is aware of this issue….believe me, he is working hard to get this fixed! Sorry for the problems folks!
Trent
I see your problem there bedbugger. It seems to head over to the wordpress install and give a 404 error when you try and access the forum. What version are you running of bbPress? If you change back to the default theme, do this still happen? Do you have any plugins? If you replace forum.php in your template with the original from the download does that help?
Trent
Just curious – is anyone working on such a thing? I had a terrific plugin for my WP comments section, but now that I’ve migrated everyone to bbPress and shut comments down, we’re in a bit of a bind. I’d gladly have them just color tag their text, but I’m not sure…
Could I create a custom tag that worked like ‘blockquote’ with its own CSS info?
Oh….akismet is in the config.php and it shouldn’t have a number in there, but be false. If the posts are not showing up in Akismet, then they are most likely not being stopped by it…..you are using the plugin for WP to show the lastest bbPress topics then?
Trent
Strange….could you give me a URL to see this problem in action? Maybe create me as a user if you confine bbPress registration to your WP or give me the URL of your forum? I might be able to test this and see if we can fix it.
Trent
It will be more like how wordpress.com does it:
[youtube=videolink]
Trent
Brilliant Sam! I will implement this one for sure and test it out!
Trent
The only thing I play with was on the 20th, more than 24 hours ago, was the config.php file. I changed the $bb->edit_lock = 60; to $bb->edit_lock = 99999;
as in here, https://bbpress.org/forums/topic/271?replies=2#post-1357
I check with my ISP for system upgrades. They did say:
“The only recent change was an upgrade of the Apache web server software, from Apache 1.3 to Apache 2.2 (the current version). This happened last Wednesday night, March 21.
Looking the your website, I see that the forum topic links point to non-existent files. For example, the link for topic “Circles in the Sand” points to http://www.canadianbookclubs.com/bkrv/topic/9 but there is no subdirectory called “/bkrv/topic” in your account, nor any rewrite rules that would map that URL to a real file. The same goes for the forum links. Something seems to be missing…”
Hi there
I think this is a fantastic plugin but for now I’ve had to disable use of it on my site forums. Why? Well I’m no dab hand at PHP but I do know it’s using the user_login to display users in the drop-down menu and what I want it to do is use display_name instead as, otherwise, my site login name is shown and I keep that deliberately long and complicated and it’s nothing like my display name, to help protect against anyone finding out my login details and getting into my blog admin.
I run the bbpress plugin to use display names not login names but it has no impact on this plugin, so I was really hoping you might consider changing it, or producing a different version, that doesn’t use login names but uses display names instead in the drop-down menu that appears under forum posts?
Many thanks for considering the change, as I really do think this plugin is fantastic – and I love the idea of ‘summoning’ people to topics!
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…
I have a few things I’d like to do, and not sure if it’s possible:
I’ve migrated a phpBB forum over to bbPress. What I want to do is twofold:
1. Lock or close a given forum so it’s read only. Basically to call this the “archive of the old forum”
2. Delete the bulk of users that migrated with phpBB while maintaining the usernames on the original posts. If I just delete users, all those old posts become “anonymous”.
Thanks…
Steve
If this is in the wrong place, my bad. I couldn’t find all the answers I needed, so I decided a new thread would help.
* Can I import my data from an Invision Power forum?
* bbPress can integrate with my WordPress blog, right? Meaning users make a profile and use an avatar that would show up in the forums as well as in comments on the blog?
* Is there a WYSIWYG editor for bbpress?
* What about signatures for posts, as you would find with phpBB, Invision Power, etc?
* Is there a quick reply feature?
What I’m looking for is a forum to integrate with WordPress, but Invision can’t do that, so it would be ideal if bbPress had features like it.
Thanks!
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 update my profile after the fact to try and get rid of it; ya know, clearing that field, putting in a “0” etc.
The really strangest part to me is that there is no bozo in my usemeta table at all. So where the *heck* is the flag coming from?
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
My default is actually http://www.example.com/topic/topicnumber.
It is possible to have topic-title in the link instead of the number, but you need to be running the very latest version of bbPress from SVN, which is likely to be buggier than the official releases. The Download page has both.