Hi,
I’m looking for someone who has had a bit of experience with theming bbPress to help me port a HTML/CSS template (which I have also made into a WordPress theme) over to bbPress. It should be relatively easy seeing as the design is simple and already coded.
Please contact me at patrick.devivo [at] gmail.com if you know someone or are willing to help me out.
Greetings,
I just installed BBPress today and was totally psyched because I have heard such great things about the WordPress products.
But . . . I am having major problems:
– New user testing – password doesn’t work. Login failed.
– I created forums and when I select the topic I get a “The requested document was not found on this server.” error.
– When I select a user profile (including mine) I get the same error.
– This is where it is strange and makes me think that maybe I need to reinstall the whole thing. I can’t create a new post. Nowhere does it say “Create post” on the forums.
I did install the Approve User Registration plugin by Aditya Naik, but I deactivated it and I am still having the above problems.
Thoughts?
thanks in advance,
Jeff
I’m developing a WordPress Theme and I’d like it to work with BBPress too. My theme uses a function ( get_container(); ) to get all the information to go within the body. To change the content, within that container, for a particular page in WordPress, but leave the header, sidebars, and footer, I can reference a custom function to be added in there.
So for BBPress, I would like to do the same thing. The get_container(); function will be called and it will get the custom function defined in each BBPress template file. The problem is, is that when I do this BBPress says I’m logged out and will not allow me to login, because it can’t find the forums. Why is this? I do get the header, sidebar, and footer defined in my get_container();. But for some reason the custom function that get the BBPress forum messes the variables for the forum.
FYI, this only lists 4 posts but is FREAKIN AWESOME!
Just made a query in my forum functions.php to display the 5 latest stories from WordPress. Pretty basic but it may help someone:
// get WP news
function wpnews() {
global $bbdb;
$stories = $bbdb->get_results("SELECT post_title, guid, post_date_gmt FROM wp_posts WHERE post_type='post' AND post_status='publish' ORDER BY post_date_gmt DESC LIMIT 0,4");
foreach ($stories as $story) {
if ($i <= 4) {
echo '<li><a href="' . $story->guid . '">' .$story->post_title . '</a></li>';
$i++;
}
}
}
then call it on your forum with <?php wpnews() ?> and style to suit.
Hey everyone,
I haven’t completely finished pimping my bbpress forum, though I thought id share it with you at this stage. Let me know what you guys and gals think, good or bad feedback is always good.
WordPress: http://www.flowfm.net/
BBpress Forum: http://www.flowfm.net/forums
Look forward to your responses,
Mark
I have bbpress installed in a subdirectory (http://www.domain.com/forum), with WordPress in the root, and I’m using a Private Forums plugin (among various others) and it was all working fine until this morning, when suddenly I am unable to login. I have two accounts, but can’t log in using either of them. (I have sent an email out to find out if I am the only one with this issue or if it is more widespread).
Symptoms are that I get the login page, so I login and am immediately presented with the same screen again.
I’ve tried disabling the Private Forums plugin, which makes the discussions visible, as you would expect but I still can’t log in, and I can’t post, so I’m not logged in ‘behind the scenes’as it were.
I’ve requested a new password, but that hasn’t helped.
I haven’t integrated with WordPress, I haven’t uploaded any new bbpress plugins, or run any upgrades. I am very puzzled.
So does anyone have any suggestions as to what might have changed, or what I can do to restore functionality?
Hi,
1st of all, thanks for this screen-cast.
I have followed your screen-cast and succeeded with integrating WP 2.7.1 and BB 1.0 alpha 6 in different directories.
http://mydom.com/wp/ (WordPress)
http://mydom.com/board/ (bbPress)
My issue is that logging in and out is working fine as long as WP handles log-in and out! And not the other way when logging out from BB.
Issue 1:
When I log-in to my WP and go to BB log-in works fine, also the other way from BB to WP.
But if I log out fron BB and go back to WP – I’m logged out but the META link is not updated and WP thinks I’m still logged in (which I’m not!)
How can I make the log-out work through BB aswell.
Issue 2:
Registering through BB gives me no role inside WP!
I have bbPress integration plug-in (wp) installed and everything else is working fine! Roles are made inside BB-WP integration just like in the screen-cast.
Can someone please help!
Thanks.
The WordPress plugins directory has improved searching now with Sphinx. See here: http://wordpress.org/development/2009/02/new-and-improved-plugins-directory-search/. Will bbPress get Sphinx too?
we dropped vanilla because of lack of support. things were going out of date when wordpress was being upgraded so the integration was starting to break. we also need PMs and the system on vanilla was extremely unsecure. we’re much happier with bbpress as it’s a lot easier to customise.
Hey I just got:
Fatal error: Call to undefined function do_action() in /usr/local/gathera/bbpress/index.php on line 6
Apache/2.0.55 (Ubuntu) mod_jk/1.2.14 PHP/5.1.2
BBPress: version 0.9.0.4
I don’t know if it matters but, last week I installed bbpress on a server without any problems. So this week I try to install it on another server, but I just got the line above and a redirect to bb-admin/install.php. But when I click the link(“let’s get started”) I see the line above again and redirects to the same page. The only difference between the two I have noticed is that one have an WordPress Installation (I didn’t activate integration, I just ignore it).
I’m really lost. Any ideas?
I just converted the TooNewsy wordpress theme over to a bbpress template. Here is a link to download it and see a demo:
http://ericlbarnes.com/projects/toonewsy-for-bbpress/
Hope someone finds it useful!
hey rowoot, i do not think you can bbSync to replace my wordpress comment system with forum posts, but it doesn`t seem to work with wp 2.6.3 + bbpress 1.0a2. well if there is i too would like to know about the same.
Cheers!!!
Hi chrishajer,
I tried to find a solution for this problem and well this is what I could get upon…
When the WP config loads, it prepares the permalink string and then scans for a file (say links.txt) in the root folder.
If the contents of the file are not same with the generated permalink string, then its written into that file.
And when BBpress gets loaded, it reads that file for permalinks and then generates header/footer as per the links.
I know that this is not the best of the methods. But still this is what I could think of.
Hope its useful for anybody trying the same thing.
To use WordPress functions (like wp_list_pages), you need to include WordPress in your bbPress. For something simple like this, I was hoping you could get away without doing that since it’s not recommended and at this point I’m not sure if it even works very well. The other problem with integration like that is that you need to integrate the Alpha version of bbPress with WordPress version 2.5 or newer. You’ve already installed 2.7 and 0.9.0.4. I’m not certain what that achieved since the logins won’t be shared between those versions.
I don’t know if there’s a good answer for this, which is why I suggested hard coding it, at least for now.
Wow! Nice work. Very inspirational.
WordPress MU is something I’ve considered for the Atheneum School down the line once I get more comfortable.
Any good advice to get started on a huge project like that?
Hi chrishajer,
Thanks for the suggestion…….
but they are bound to change sometime in future.
I also read your article. Thanks I was bit struggling with this thing also(getting WP info in BBpress). But even if I get the information, how would i construct the Permalink structure of the WP.
I have been following the WP code to write my own functions, but they seem to go pretty deep and I dont know whether creating a copy of these functions in BBpress would be safe or not.
bbPress permalinks still not working for me.
I have also a wordpress installation with the same hosting company on the same account. Rewrite works perfectly.
My bbPress site 0.9.04:
I tried ‘MultiViews’ and the ‘generated Rewrite rules’ in my .htacess file and nothing gets the pretty links to work. The html links are generated well but the pages are not found.
There must be something else. Any hints for me?
I am not into the Unix stuff too much and I am wondering if .htaccess files need a kind of ‘server restart’ or etc.???
When I installed bbPress I also needed to add a line that instructs the server to use PHP5 instead of prev. versions. The bbPress requirements spoke always about PHP >4.3… so that was not right as well. I am wondering if the permalink stuff is may be not 100% at this point.
Besides of that… bbPress is definitely a super cool product from you WP guys! It rocks and finally brings a good looking message board on the plate. Good work. Thanks!
I appreciate a help re. the permalinks.
Frank
i have wp 2.7 working fine with 1.0 alpha 6, as do some other users. i don’t remember doing anything special apart from manually pasting all the wordpress keys into the bbpress config file. the automatic config didn’t write anything to the files. it all worked fine once i did it manually.
Hi, Sam, and thanks for the reply and attention. The bb-config.php and wp-config.php files are practically identical, so the answer to your question is: no.
How long until a working Stable with this cookie setting correctified?
bbPress live does the opposite (I think it lets you show bbPress information in a WordPress site):
https://wordpress.org/extend/plugins/bbpress-live/
Sounds like the plan is to allow what you’re looking for in future versions:
https://bbpress.org/blog/2008/10/bbpress-10-alpha-2-released/
You used to be able to use bbSync to do this, but that was prior to the 1.0 alpha versions.
https://bbpress.org/plugins/topic/bbsync/
I’m not certain how you do this with the Alpha versions