Search Results for 'bbpress'
-
Search Results
-
Hi!
This is just a comment just in case it helps because I had to remove again bbpress.
I tried to integrate 1.0 Alpha with Wp following the bbpress installer and after installation finished, admin login was all messed.
First, bbpress changed my wp admin password. I re-set the old password from bbpress control panel and everything seemed to work fine again but next, whenever I tried to login in wordpress I had to log-out from bbpress.
Hope developers consider a better bbpress-wp integration for 1.0 final
Hi,
Im trying to integrate bbPress 0.9.0.2 into my existing Login-System.
The Problem is, that I use sessions instead of cookies to send the user’s information from one page to another.
I want to be logged into bbPress when logging into the main Page of main website (not bbPress
) via session.. Is this Possible? If yes, could anybody please help me?I’m trying to find a way to solve this problem for days..
Greetings from Germany,
reiswaffel2000
So far the biggest issue I have found with plugins that will make them incompatible with bbPress 1.0 (including the current alpha) is the direct access of topicmeta for either topics or bbpress options (topic #0).
To find plugins that do this, simply do a text search on them for the exact string “->topicmeta” (without quotes). Just to be on the safe side you can also try “-> topicmeta” with a space but I think that will be rare or impossible.
So far I have found and fixed a couple of mine, and I am currently working to upgrade bb-topic-views.
Let me know if you find others.
Topic: ETA for WP 2.6 support?
Hi, I am using WP 2.6 and I am eagerly waiting to use bbpress with it. Any ETA?
Topic: admin link not working
i’m new to all this wordpress stuff so forgive me if this is too hackish.
i installed wp2.6 and bbp1 alpha. they almost integrate. i had a problem getting the admin link to work when i had logged in via wordpress (no problem logging in via bbpress). on investigation i discovered wp login was setting cookies only for itself, whereas bbpress was setting cookies for itself and wordpress.
my solution tells wordpress to be as polite as bbpress:
insert the following into wp-config.php replacing {bbpath} with your bbpath:
define(‘BB_ADMIN_COOKIE_PATH’, ‘/{bbpath}/bb-admin/’);
define(‘BB_PLUGINS_COOKIE_PATH’, /{bbpath}/bb-plugins/’);
define(‘BB_MYPLUGINS_COOKIE_PATH’, ‘/{bbpath}/my-plugins/’);
open wp-includes/pluggable.php and find where the cookies are set – these lines:
setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure);
insert the following immediatley after:
setcookie($auth_cookie_name, $auth_cookie, $expire, BB_ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, BB_PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, BB_MYPLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);
now wordpress will set the same cookies as bbpress thus allowing full access averywhere.
like i say, i’m fairly new to this so please correct me if i’m wrong or if this approach has security implications.
