Based on Scoun theme from Mike Lothar.
Plugins used:
– Akismet
– Human Test for bbPress
– bbpress SEO tools
– Allow Images
http://marinerodeaguadulce.com/foro/
There’s no official documentation or codex yet.
A few people have done phpxref for bbpress but I find that kind of output fairly useless.
If you have access to linux shell you can do a grep to get a function list in the template include like so (or install the grep for windows)
grep -oe ^function.*) bb-includes/template-functions.php | sort > functions.txt
modifying that you can also get the filters/actions
grep -oe apply_.*) bb-includes/template-functions.php | sort > filters.txt
grep -oe do_.*) bb-includes/template-functions.php | sort > actions.txt
If you use the grep for windows, leave out the escapes (backslashes) or it won’t work.
Would it be easier to convert a WordPress theme into a bbPress theme?
If you guys where in my shoes… which one would you pick for a windows technical support forum?
I’m already familiar with writing plugins for WordPress but now I’m interested in writing a few plugins for bbPress. I’m trying to find a list of hooks/actions so I can get a better feel for what I have control over without altering the core files. Does such a thing exist? If not which php files should I be going through to find hooks/actions or are they all in different files?
Cheers
@JesperA: Have you tried to change the cookie keys from the default phrases? For instance a simple word?
I’m not at all sure if that’s the problem, but I didn’t get my integration working before I changed the keys to something completely different without special chars or whitespaces. Although I might have done something else as well in the same run.
Yes, i tried that now but it doesnt work, the problem is that it starts with the folder i´ve set up in php.ini and adds the domain i wrote in the require statement, something like this: c:wampvhosthttp://www.domain.se/
I can use include instead so i get an error message when i log into the admin section, it works fine in the forum part but it breaks the logout function in bbpress
ok, this problem is now back, after I updated to wp 2.7 and bbpress 0.9.0.3.
now my feed doesn’t validate because of the date:
Sorry
This feed does not validate.
*
line 18, column 39: pubDate must be an RFC-822 date-time: Fr, 02 Jan 2009 10:57:20 +0000 (35 occurrences) [help]
<pubDate>Fr, 02 Jan 2009 10:57:20 +0000</pubDate></blockqoute>
and the rss widget doesn’t update again with new forum postings.
It should be noted that the issues being complained about by some in this thread are now mostly resolved in trunk and recent versions.
it depends on your needs, if you need a forum that has too many features, then its phpbb for sure.
but if you are looking for a simple forum that has basic functionality, then it’s bbpress.
personally i like bbpress, i like how simple/basic it is, which allows me to add only the features that i want on my own via plugins, while phpbb has too much features, more than i ever wanted, which of course makes it heavier.
The problem with automated role mapping is now fixed in trunk.
That is exactly right. When using the permalink structure, bbPress will provide you the contents of what to put inside that file. Eventually I’m sure bbPress will make that file for you, but for now it’s a solid solution.
I’m already familiar with writing plugins for WordPress but now I’m interested in writing a few plugins for bbPress. I’m trying to find a list of hooks/actions so I can get a better feel for what I have control over without altering the core files. Does such a thing exist? If not which php files should I be going through to find hooks/actions or are they all in different files?
Cheers
very helpful screencast. thanks!
i’m having the same problem as maxwellfir with user roles not being assigned correctly and the error when trying to assign them.
for existing users (from wordpress) i get the error mentioned above when trying to edit that user’s role in bbpress.
for new users (signed up via bbpress) their role in wordpress is set to “none” and therefore can’t login to wordpress.
not sure if the second issue has anything to do with having registration disabled in wordpress.
thanks for any additional help with this.
1.0-Alpha-4
https://bbpress.org/download/#bbfooter
That’s an alpha version, not suitable for a production site, but that’s the version that’s compatible with WordPress 2.7. I’m not recommending you use it, but that’s the version that’s compatible.
Watch this before attempting integration:
https://bbpress.org/forums/topic/basic-integration-screencast
Yah, Google search is the best way I know to search multiple *Press sites.
I should highlight some downsides though:
* The search is not necessarily live; it’s searching Google’s version of the site, not your live site. So it’s especially important to have live Google Sitemaps on any WordPress or bbPress installs you want searched.
* You want to make sure that any subdomains do a good job of hiding pages that you don’t want searched. For example, I have MediaWiki on a subdomain… which does a bad job of hiding the editable version of each page (and other random pages too, like WhatLinksHere). I fixed that with plugins and other hacks, but it cluttered my search results for a while.
Hmm, those are the big downsides. Overall though, you can’t beat the ease of implementation of a Google custom search engine!
phpbb is much much much more powerful and has dozens of features.
I believe it may have something to do with my .htaccess file being read only. I can make it writeable but how do i go about fixing bbpress so that it writes the correct .htaccess file information.
I just setup bbpress on my domain and moved away from simple forums. I am however getting a 404 error when I go to my site.
http://www.greenfitnessworld.com/forum you can also view bbpress at
http://www.greenfitnessworld.com/bbpress
Thanks in advanced for any help you can give on fixing this problem
I am using WordPress 2.7 and wanted to know which bbpress would be compatible with it?
I think it’s cool that the index and the mini-plugin can improve on bbPress, but “severe performance issues” to me is not going from 0.0920 to 0.0005 seconds. That’s from 1/10 of a second to nearly nothing. But 1/10 second was “severe performance issues”?
Or, does this query from _ck_ just show a way to measure the improvement, where in actual usage, someone with 10K topics or 42K topics would see a performance hit (delay) much different than the test query that _ck_ posted. I’m all for improving what can be improved, but there are much larger issues to worry about than something that is taking 1/10th of a second. With bandwidth and browsers being what they are, the page isn’t going to load that quickly anyway, and adding 1/10 of a second to the processing time is not going to be noticeable to me.
Well from my past experience with phpbb and bbpress I have to say bbpress would be quicker for you and there are plugins that will allow you to do so.
Hi there!
I am sorry if someone else has already created a post on this.
I have a website (powered by wordpress) that has a bunch of how-to windows tech articles. I need to get a forum for my site users. Which one would be better? My users will need the capability of uploading files, pasting code and images. Which forum program would put less pressure on my servers and hopefully keep the running a little faster?
Thank you ahead of time for any help.
I have always found the pretty permalinks awesome in bbPress. I really like them.
But there are a few places they aren’t consistent and still use the .php extension (bb-login.php and register.php) or even $_GET for tags.php. I would highly recommend patching this up when pretty permalinks are on.
Can this be done?
This is the SQL query to use if others want to add such an index:
ALTER TABLE bb_topics ADD INDEX (topic_time)
But that in itself is not enough, bbPress has to be forced to use the index.
I am trying to figure out a way to do this without hacking the core, via a mini-plugin instead.