Published on January 17th, 2009 by
Hi all,
we have launch the new version of ours blog with added integration with bbpress (alpha 1-6). We would appeal to us to have some opionions about this and others opionions to improve bbpress and even to make it better
thanks!
url http://www.strabello.it/forum/
Published on January 17th, 2009 by
Hi!
I installed wp 2.7 and bbpress 1.0 (alpha 6) and all seem to work.
I have only a little problem: when a user changes his website in his profile editor, bbPress doesn’t show the website link but the profile link!
Anyone can help me?
Thank you,
Giovanni
Italy
Published on January 17th, 2009 by
How do I setup on the front-page.php to list pagination?
Meaning, if I have more than 30 threads – I would like it to say “Page 1, 2, 3…” as links
I assume this is a bbPress function call but can’t find it
Published on January 17th, 2009 by
I just downloaded and installed bbPress ALPHA.
All is working okay.
I read that WordPress wp-caching plugins should work, I just installed the WP SuperCache into /my-plugins/
https://wordpress.org/extend/plugins/wp-super-cache/
I logged in as Admin, went to ACTIVATE the plugin and received the following error:
Fatal error: Call to undefined function get_option() in /home/uptownelite/forum.uptownelite.com/my-plugins/wp-super-cache/wp-cache.php on line 30
Any ideas why?
I thought WP caching plugins are suppose to work in bbPress ALPHA
Published on January 17th, 2009 by
I have this error message on every post…
bbPress database error: [Table ‘harrismarineblog.wp_lvtwfff_usermeta’ doesn’t exist]
SELECT * FROM wp_lvtwfff_usermeta WHERE user_id = 3 AND meta_key = ‘post_count’
bbPress database error: [Table ‘harrismarineblog.wp_lvtwfff_usermeta’ doesn’t exist]
INSERT INTO wp_lvtwfff_usermeta (user_id,meta_key,meta_value) VALUES (‘3′,’post_count’,’353′)
.
Also no one can log in even admin it keeps saying username not registered.
Does anyone know how to fix this???
Published on January 17th, 2009 by deadlyhifi
I’ve married my wp2.7 and bbP 1.06 successfully (i think); all the login/logout cookies are playing nice.
Regarding registration, I can register though WP but not bbP which just reloads the registration page (remembering entered values). Is this correct or should registration still work from both sides?
Once logged in I am able to access profiles on both sides. How are people dealing with this? Are you sending your users to the WP or bbP side to see and edit their details?
Published on January 17th, 2009 by ganzua
I can’t make this plugin work
Do you have it working in your bbpress installation?
Published on January 16th, 2009 by
Basically heres the issue I’m having. I have a wordpress installation and and a bbpress installation working together, I would like to create a special role for contributors on bbpress so that my contributors on wordpress can go to view things specific to contributors. I don’t want to allow my contributors access to moderator rights.
So there you have it, is there a way to create a custom role so I can assign them special access?
Published on January 16th, 2009 by andersson
I’m on 1.0Alpha6.
Is this just a quirk in the bb-benchmark plugin i.e. is the timer just way off?
This is what I get when loading a normal page, with 11 queries executed in notime at all.
time to reach each section:
bb_underscore_plugins_loaded = 0.169
bb_plugins_loaded = 0.179
community.php = 0.209
header.php = 0.209
search-form.php = 0.209
footer.php = 1.019
time to render page: 1.0153 seconds (query time subtracted)
total query count: 11
total query time: 0.0027 seconds
`
if you look at that time difference from the other sections and compare it to the time it takes to load footer.php. It’s just insane. footer.php contains nothing but a “copyright” thing and a hook to do_actoion bb_foot.
Does anyone have any thoughts on that?
Thanks for an excellent product.
Edit:
Maybe I’m reading the stats wrong. It’s probably measuring the time between search-form.php and when it finally arrived at footer.php. but still, something is taking an enormous time between those two, and it doesn’t seem to be the queries to the Db. Still appreciate some thoughts here on what this could be. Thanks.
Published on January 16th, 2009 by
Hi all,
I want to create one bbPress forum using 2 different languages. Without using any plugin I think I can achieve this by these steps:
(1) Prepare the directories <WebRoot>/bbpress/US and <WebRoot>/bbpress/FR
(2) put the files in the US directory first.
(3) Start the installation using http://localhost/bbpress/US
(4) All tables are installed as usual. Forum can operate in full
(5) copy all the files under /US directory to /FR directory
(6) change the /FR/bb-config.php
define(‘BB_LANG’, ”); to become define(‘BB_LANG’, ‘fr’);
(7) clone the database table bb_topicmeta to bb_topicmeta2
(
change the uri value in bb_topicmeta2 to http://localhost/bbpress/FR
(9) change the table name reference for table bb_topicmeta to bb_topicmeta2 under /FR
Under this installation any user can go to http://localhost/bbpress/US for forum in English; or http://localhost/bbpress/FR in French. However, all the post content, tag, user profile are the same.
Okay…I’m looking up and down and still unable to do step (9). I cna only figure out the table names are defined in file /bb-includes/db.php. I made the change
var $tables = array( ….’topicmeta’…) to var $tables = array( ….’topicmeta2’…)
but it did not really change the table name reference.
So all bbPress guru…is my approach incorrect or I actually go the wrong way ? Any help is welcome. Thanks !!!