There has always been some overlap with functions being declared in both bbPress and WordPress. I don’t know the solution to this one.
Does the same problem happen on endurodoc.net? Installing on localhost on MAMP can be troublesome, and if you’re going to host it on the Internet anyway, it would be better to solve problems in the environment where it will ultimately reside.
I think we had some successful people using it with WP 3.0. I personally don’t recommend automatic upgrade. Sometimes it might be a drastic code change that will mess your integrated bbpress theme.
so there is no way to reply to a comment, only to the entire post thread? how does somebody quote another person to reply to them within the post?
You copy and paste into your reply and just wrap it in html <blockquote>
Replies are not threaded in bbPress. Comments *are* threaded in WordPress, if you want them.
Nice to see that big changes are finally happening here. Now all we need is a look-a-like theme to go with it. bbShowcase is back on? Sweet!
I just integrated my wp with bbpress and its working wonderfully, however, now i’m wondering if I should still be using the “automatically upgrade” feature in wordpress when they release a new version of it. I routinely do that. I currently have the most up to date version, but I’m wondering if I do that in the future if something will break now that I have this integration setup.
The integration instructions I followed were here:
http://wpbbpthemes.org/integration/
so there is no way to reply to a comment, only to the entire post thread? how does somebody quote another person to reply to them within the post?
We have our bbPress forum hosted at Network Solutions [unfortunately]. When we activated SSL in bbPress, any SSL-secured page would immediately go into an infinite redirect loop to itself. After a little PHP debugging, I determined that the cause was two-fold:
1. $_SERVER does not exist, for some reason, at NetSol.
2. $_SERVER always returns 80 at NetSol, even when accessing the site via https. It should return 443.
This causes the two conditions in the is_ssl() function to fail, so the function incorrectly returns false. When the secured page redirects itself from http to https, bbPress still thinks it’s an unsecured page and redirect back to itself again… and again… and again.
We had no choice but to hack the core, which is bad because it will get overwritten when we upgrade bbPress. is_ssl() resides in /bb-includes/backpress/functions.core.php. I added a condition to simply look at the scheme of the URI and return ‘true’ if it is ‘https’.
I added this line to the first line of the function:
$uri_ssl = parse_url(bb_get_option('uri_ssl'));
Then this add’l elseif condition:
} elseif ($uri_ssl == 'https') {
// Hack to support NetSol's questionable setup.
return true;
}
Has anyone else ever experienced this at NetSol?
then, now with your path is ok!i make a mistake, the file was find but, i get this error:
[06-May-2010 19:02:23] PHP Fatal error: Cannot redeclare wp_clone() (previously declared in /Applications/MAMP/htdocs/wp2.9/bbpress/bb-includes/backpress/functions.core.php:1043) in /Applications/MAMP/htdocs/wp2.9/wp-settings.php on line 308
some ideas?
tank you very much for your help 
kikko088
The path and the URL (technically URI) are not the same. To use “require_once” it needs to be a file system path. So, your “http://www.endurodoc.net/forum/bb-load.php” would never work. You need to use a file system path there (relative or absolute.)
This is my favorite topic of all time on bbpress.org – thanks _ck_
Looks nice. Just discovered bbpress and had the site open the other night, wake up and click to a new section and it was different! Fun.
I try your path but nothing…
I also try to put the code on wp-config of my site online, where the path is http://www.endurodoc.net/forum/bb-load.php but nothing…
blank page!
kikko088
It’s great to see the site updated
it’s also great to see _ck_ as well w/b :o)
It is good to see such a nice work. Congrats.
Gautam, I would at least remove the bbpress header and bee graphic on yours.
Oh, so I would have to stop making it..
Chris the bbpress.org theme willl likely never be available since it’s not a GPL creation, Matt paid employees to have it made.
However there is a WPMimic theme for bbPress which makes it look very close to this since it simulates wordpress.org
For some reason I have the wrong screenshot of it but you can see it in action like this:
http://bbshowcase.org/forums/?bbtheme=WPMimic
Well, I have some part of it live on my test forums – http://forum.gaut.am/ (I think I won’t be sued for copying the design.. lol.. I will release it after I have finished it.)
There are many pages still which need to be changed on this site like profile, profile edit, favorites, views, etc.
I have made some changes like pushed the search box up (on the left side of login bar), made a function for generating topic table (it becomes easier to tweak if a change is needed in the table), and another function for generating feed box in sidebar.
Ok, seem like i may have pushed it too far staying up to work on this, i overwrote home.php in my template dir. Thanks for your response, prompted me to go check that out
Hmmm, you’re right. Actually i am not seeing the dropdown to select any templates, even the custom homepage I made. In quick edit there’s only the the “Default Template” option.
I assume that the news page is using your blog template rather than page.php.
I recommend checking the template which the page is using and then checking the template in the editor and take it from there.
Hi there, after installing and integrating bbpress on our WordPress site, the “news” page which is the blog portion of the site only shows partial content, of the last post created, not showing any of the “blog” stuff like date, author, sidebar, etc. Here’s the address if that may help: http://www.apps4good.ca/news
Would appreciate any help!
Thanks,
Ian
PS. I’ve installed bbpress again with no integration at /forums (previously /forum).
Great work guys… looks great !….
How would I get my hands on this version of bbpress 2.0, not to go live but have a look and a play around with locally… ?
Keep up the great work Noel, thanks!
We’ll definitely be tweaking things out a lot over the next few days. This theme was definitely a huge group collaboration