Search Results for '+.+default+.+'
-
Search Results
-
i just solved my login cookie issue after one night debugging…
i found these things:
– by default, wpmu generate auth_cookie as “wordpress”, but bbpress generate as “wordpress_xxxxx(hash)”
– wpmu not using “database secret” for cookie hashing, but it use the SECRET_SALT constant defined in the wp-config.php, bbpress using “database secret”. so the cookie result will never be the same.
you need to update your bb-config.php file to meet these situations.
assumed you’ve successfully install wpmu + bbpress, then edit your bb-config.php and add these line:
define(‘BB_SECRET_KEY’, ‘yourreallysecretkey’);
define(‘BB_SECRET_SALT’, ‘yourreallysecretsalt’);
$bb->authcookie = ‘wordpress’;
$bb->cookiedomain = ‘.yourdomain.com’;
$bb->cookiepath = ‘/’;
$bb->sitecookiepath = ”;
and try to login… voila.. you can switch to bbpress and wpmu without re-login…
good luck,
—
rh
Topic: Reading Forum for Kids
Here’s my bbPress. It’s a forum for kids and teens to discuss books on. I modified the default theme to fit with the color scheme of the main site, and added a few plugins for features that my members wanted.
This is actually our second forum. The first was a YaBB install, which I hated, ’cause it kept letting spammers in. But our members and I love bbPress and the ease of use!
Topic: Nicknames
When users on my site sign up using the forum signup, it successfully integrates them into wordpress, but they do not have a nickname, so all comments appear as Anonymous.
Normally wordpress would automatically set the display name default to be the login name, but they dont seem to for this.
Any way i could edit the BBpress files to make wp have a name?
Topic: Page Bug
My forum users have named this the “Page Bug.”
Here’s what happens: Our forum has 30 posts per page in a thread. Somebody posts the 31st post (or 61st, 91st, etc) which should show up on a new page. However, the thread gets stuck. There’s no “next page” number to click on. The post was successful, it’s just not displayed on a new page.
At this point, I tried recounting, but it still did not appear.
The only way out of the mess is to make a new post. Suddenly, a new page appears and the 31st post is right where it should be, followed by the new 32nd post.
Sometimes the 32nd post doesn’t work either, but that doesn’t happen often.
I’m running v0.9.0.2 with a host of plugins. I’ve tried with no plugins and the default template but it still happens.