I’ve modified my Google Analytics Plugin for WordPress and it appears to be working in BBPress (albeit without the UI for configuring the “uastring”).
Testers welcome; get it here…
This sounds like: https://bbpress.org/forums/topic/52
After you try to login, does it still display the login form or does it instead show you the profile, admin, and logout links?
In future versions of bbPress, you will be able to do this with a short plugin.
As for the [Closed] issue, you can solve that be removing the filter and adding your own (or using custom templates).
remove_filter('topic_title', 'closed_title', 30);
Found my solution here….
https://bbpress.org/forums/topic/17?replies=26
Thanks astereo:
Solved my problem. It was coming from
#
$bb->wp_table_prefix = false; // ‘wp_’; // WordPress table prefix.
#
$bb->wp_home = false; // WordPress – Options->General: Blog address (URL) // No trailing slash
#
$bb->wp_siteurl = false; // WordPress – Options->General: WordPress address (URL) // No trailing slash
I had set the urls only to domain.com/directory, when I added the http and www it worked fine.
I’m digging the idea of bb inside wordpress. thanks
installed bb following integration with wordpress. installed fine. however, none of my logins work for bbpress. if i try to write a post, i’m asked to login. i do so, and the login doesn’t allow me to post or comment on threads. nor can i get into the admin area.
i know the login is correct because when i use a false login, i get an error message – which doesn’t happen when i use the correct login. all that happens when i login with the correct info is i end up being told i need to login again. it’s as though i’m stuck in some loop.
not sure what to do next. any help?
cmcraft, you need to call WordPress’ template functions yourself. bbPress doesn’t do that for you.
Not yet, from what I can gather. But hopefully someone will work on an importer script soon.
Integrated WordPress with bbPress. I’ve added the integration plugins. But can’t get logins to work in bbPress.
I pre-registered a few new users in WordPress. Can login fine in WP. But I can’t even seem to login as admin in bbPress even to write/comment on a post – regardless of admin or other users. Can see an admin screen, but not allowed to do anything there without login – which I can’t do.
No error message comes up. I login, checks the database and returns to the screen. Doesn’t matter which login link I’m using in bbPress, I can’t create/edit a thread, nor can I gain admin access.
Any ideas?
I just changed wp_home & wp_siteurl from http:// to www, ran install again – and got same error.
I’m also using require_once (‘..wp_config.php’). When I comment it, I get this error:
Fatal error: Call to undefined function: __() in [PATH]/bbpress/bb-includes/capabilities.php on line 27
I’ve got to be missing something simple. Just don’t know what.
A little more detail…
I’ve installed bbPress in a folder inside WordPress (I want to integrate them). I’ve followed the instructions for integration. I think everything’s right – but, obviously not if it’s not working.
I love WordPress and was stoked to hear about bbPress. So any help getting this started would be greatly appreciated.
I’m getting this error…
Parse error: syntax error, unexpected T_STRING in [PATH]/bbpress/config.php on line 57
my config file says to stop editing at this line. Why am I getting this error and how can I fix it?
/me thinks aloud
Just the one set. A basic plugin-management-plugin should be auto-activated when no other plugin-management-plugin is available.
This would need an extra entry in the plugin remarks such as “Plugin-Type: Plugin Manger” so that at least one such plugin is always enabled.
That way the default behaviour could be replaced (as requested earlier), keeping UI clutter down.
Perhaps “Plugin-Type” should read “Plugin-Tags” and thus categories could be achieved.
Ok so I got it to work without error, but it still does not load my blog site on top of the forum. Maybe I misunderstood, I need more than just username and password integration. I need it to show my blog.
Hey, I was checking out this board so I could suggest this very idea.
I have some easy style postings on my blog with over 100 comments… that makes for one very long page.
I would love to see a feature that takes WP postings up to the <! –more–> tag and automatically generates a BBpress posting that is tied into the blog comment system.
Hi all,
Is there an easy way to import a phpBB forum into bbPress?
Thanks!
Hola!
Que lástima enterarme tarde, acabo de montar un foro en mi blog http://www.alhaurintorre.com con phpBB.
Me ha llevado bastante trabajo y de haberlo sabido, seguro que lo hubiese intentado primero conWP.
Cuando me recupere de la experiencia lo intentaré con bbPress.
¡¡Suerte!!
i’m using
require_once(‘/absalout/path/’)
I tried that and it threw back a serious error. I might be a noob, but is there more defining that needs to be done? Inserting the code towards the bottom didn’t work. My installation works ok, but it doesn’t load wordpress at all, and if I uncomment the wp_bb line, it errors up as well.
Help!
The plugins are loaded everytime bbPress is loaded.
If you’re don’t want any code from your plugin to execute unless you’re in the admin, you could put something like this hack at the top of your “admin-only” plugins:
if ( false === strpos($_SERVER['REQUEST_URI'], '/bb-admin/') )
return;
But just loading the plugin file shouldn’t add too much overhead. You could do something a little nicer, if you weren’t worried about loading your plugin file:
function my_admin_only() {
if ( false === strpos($_SERVER['REQUEST_URI'], '/bb-admin/') )
return;
else load_my_plugin_stuff();
}
add_action( 'init', 'my_admin_only' );
Create a directory called my-plugins/
in bbPress’ root directory.
Into that add a new file called mod-write-topics.php
with the following code.
<?php
function mod_write_topics() {
global $bb_roles;
$bb_roles->role_objects['member']->remove_cap( 'write_topics' );
}
add_action( 'bb_got_roles', 'mod_write_topics' );
?>
I think that will work, but I haven’t tested it.
If you switched user tables after bbPress was already installed, the accounts in the old user tables won’t work.
You can log in with the accounts in the new user table, but none of those accounts will have administrator rights in bbPress.
You’ll have to manually add something to your database.
In WordPress’ usermeta table, add an entry that looks like:
user_id: #your user id on your blog#
meta_key: bb_capabilities (replace ‘bb_’ with bbPress’ table prefix)
meta_value: a:1:{s:9:”keymaster”;b:1;}
Has anyone considered what might be required to migrate existing WordPress comments into BBPress?
I’m imagining a script that would examine the comments DB, move comments storing them in an article-specific topic (which might be easier if themes could be nested, like categories), tagging them with their previous article’s categories.
One nicety: perhaps each former comment URL could be added to htaccess, redirecting to it’s new location.