Search Results for 'bbpress'
-
Search Results
-
Topic: Another permalink question
I have installed bbpress in the folder /forum/ , so at the moment every forum pages have this url http://www.example.com/forum/forum/example-forum
do you think it’s possible delete one /forum/ from the url ?
Topic: New forum setup
On clicking install it says
I use wp2.9.1 and stable bbpress 101
here is what i get
OOPS
BBpress is already installed
maybe u should upgrade
All I did was click the install button once
then went back to look at the step three settings and changed the advanced database settings to be wp_ instead of empty
everything else went according to hoyle
Topic: bbPress SEO blog post
Hi,
I wrote a guest blog post over on WP Tavern today about why bbPress is good for SEO:
Will be interesting to see if a trackback from here shows up on the post considering that is one of the points I made about it being good for SEO.
Topic: Allow Edit/Change Username
Hey there,
Currently running 0.9.4 of BBPress and the installation was from several months ago before the new update. However I would like to avoid having to update BBpress to the new version as mine is linked with Word Press. Would there be an issue if I upgraded BBPress with WP linked with it, without updating Word Press?
Anyway, the forum was originally a different forum and alot of users lost their original usernames and it defaulted to their original username. The users want to be able to change their usernames back to what they were before without loosing all the posts linked to them. So is the only way to do that to upgrade BBPress? or go in manually and change it in the database?? There are alot of users that need their names changed.
Thanks,
Adam
Hi,
I’ve installed bb-anonymous-posting version 2.2 today and as soon as I activate it I’ve got:
Fatal error: Cannot redeclare bb_anon_get_bb_post() (previously declared in /home/tanthaic/public_html/wp/bbpress/my-plugins/bb-anonymous-posting/bb-anonymous-posting.php:21) in /home/tanthaic/public_html/wp/bbpress/my-plugins/bb-anonymous-posting/bb-anonymous-posting.php on line 24
Does anyone see this error before? I check the file bb-anonymous-posting.php, but see only one bb_anon_get_bb_post().
Please stop changing core code so CK can get all 60+ plugins to be compatible with the new version, please.
It is very frustration, now that WE have to wait till December (when ck updates he/shes plugins)..
this effectively renders the new version useless as the plugins are what makes bbpress.
thanks for your time and godbless xoxox
the theme of “bbpress.org” for v1.0.1?
I love this theme
Topic: BuddyBar in bbPress
Topic: Integration Woes
OK, I have sort of a weird problem that I am hoping I can get some help with.
I have multiple WP sites integrated with each other – 1 install on the root domain, and numerous installs on subdomains.
In order to integrate users and cookies to maintain a login valid across all the installs the Authentication Unique Keys section in my wp-config is set up like this:
define (‘COOKIE_DOMAIN’, ‘.mydomain.com’);
define(‘COOKIEPATH’, ‘/’);
define(‘AUTH_KEY’, ‘mygeneratedkey’);
define(‘SECURE_AUTH_KEY’, ‘mygeneratedkey’);
define(‘LOGGED_IN_KEY’, ‘mygeneratedkey’);
define(‘NONCE_KEY’, ‘mygeneratedkey’);
$baseurl = ‘http://www.mydomain.com’;
$cookiehash = md5($baseurl);
define(‘COOKIEHASH’, $cookiehash);
define (‘AUTH_SALT’,’AUTH_SALT’.COOKIEHASH);
define (‘LOGGED_IN_SALT’, ‘LOGGED_IN_SALT’.COOKIEHASH);
define (‘AUTH_COOKIE’, ‘AUTH_COOKIE’.COOKIEHASH);
// define (‘SECURE_AUTH_COOKIE’, ‘SECURE_AUTH_COOKIE’.COOKIEHASH); // If you use connection SSL
define (‘LOGGED_IN_COOKIE’,’LOGGED_IN_COOKIE’.COOKIEHASH);
define (‘TEST_COOKIE’, ‘TEST_COOKIE’.COOKIEHASH);
As a result, I can’t find the salts needed in wp-admin/options.php as they are not listed. I’ve tried using the same settings in bbpress as above in the bb_config file (see below), but no love. I’ve also tried changing them to BB_%WHATEVER% which doesn’t seem to work either.
define (‘COOKIE_DOMAIN’, ‘.mydomain.com’);
define(‘COOKIEPATH’, ‘/’);
define( ‘BB_AUTH_KEY’, ‘mygeneratedkey’ );
define( ‘BB_SECURE_AUTH_KEY’, ‘mygeneratedkey’ );
define( ‘BB_LOGGED_IN_KEY’, ‘mygeneratedkey’ );
define( ‘BB_NONCE_KEY’, ‘mygeneratedkey’ );
$baseurl = ‘http://www.mydomain.com’;
$cookiehash = md5($baseurl);
define(‘COOKIEHASH’, $cookiehash);
define (‘AUTH_SALT’,’AUTH_SALT’.COOKIEHASH);
define (‘LOGGED_IN_SALT’, ‘LOGGED_IN_SALT’.COOKIEHASH);
define (‘AUTH_COOKIE’, ‘AUTH_COOKIE’.COOKIEHASH);
// define (‘SECURE_AUTH_COOKIE’, ‘SECURE_AUTH_COOKIE’.COOKIEHASH); // If you use connection SSL
define (‘LOGGED_IN_COOKIE’,’LOGGED_IN_COOKIE’.COOKIEHASH);
define (‘TEST_COOKIE’, ‘TEST_COOKIE’.COOKIEHASH);
All of the users can login to bbpress using the same username and password as on the wp sites, but the cookie integration doesn’t work, and again – I cant find the correlating values in wordpress.
Does anyone have any suggestions?
Hi –
I want any user who I register on my WPMU site to automatically get the cookie-share-log-on-goodness that bbpress provides.
HOWEVER!!!
I do NOT want any user who registers at my bbpress site to get a WPMU account. I don’t even want them to get a “subscriber” account.
Any ideas?
I’m trying to protect page on another subdomain… but unfortunately bbPress is not authenticating the cookie. (they are set for .domainabc.net)
for test.domainabc.net:
Cookie: bbpress_logged_in_00aa30280fe74d40ca269b5b2efffba3=rich%7C1247421898%7Cfbd785e0974af74814b56550af9c49dc
for forums.domainabc.net
Cookie: bbpress_logged_in_00aa30280fe74d40ca269b5b2efffba3=rich%7C1247421898%7Cfbd785e0974af74814b56550af9c49dcon test.domainabc.net i have something like this:
require_once ('../forums.domainabc.net/bb-load.php');
function add_allowed_redirect_hosts() {
$allowed_redirects = array('test.domainabc.net');
return $allowed_redirects;
}
add_filter('allowed_redirect_hosts', 'add_allowed_redirect_hosts');
bb_auth( 'auth' );It will properly redirect to the login page, enter info, redirect back to test.domainabc.net – but then it will issue another 302 redirect back to forums.domainabc.net.
and if i place a die statement within this
bb_auth
else on test.domainabc.net it will echoif ( 'auth' === $scheme && !bb_is_user_logged_in() ) {
//redirects fine to login page the first time...
} else {
//echo - this happens when returning a 2nd time
}BUT… if i return to forums.domainabc.net i’m logged in… and everything works.