Search Results for '\"wordpress\'
-
AuthorSearch Results
-
June 15, 2009 at 7:35 am #74568
In reply to: Integrating WPMU trunk and bbPress RC2
Sam Bauers
ParticipantTry fudging it by adding a subdomain to the WordPress URLs in the WordPress Integration section.
I’m going to look at WPMU integration now to see what else might be up there.
June 15, 2009 at 5:44 am #74532In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Sam Bauers
ParticipantThe fix on the WordPress side is to remove these defines from
wp-config.php:define('COOKIEHASH', 'whatever');
define('SITECOOKIEPATH', '/wp-admin');The plugin will be updated soon, but remove those if you are running WordPress standard (i.e. Non-WPMU)
June 15, 2009 at 5:41 am #74531In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Sam Bauers
ParticipantThere is now a fix in bbPress trunk for an associated issue where bbPress would not clear all wordpress_logged_in cookies that were generated by WordPress.
Seriously, my life is wasting away chasing WordPress cookies.
June 15, 2009 at 5:28 am #74567In reply to: Integrating WPMU trunk and bbPress RC2
John James Jacoby
KeymasterSomething must be up with the trunk…
If I install bbPress in a sub folder of WordPress, what seems to happen regardless of my settings or fudges, is that the bbPress login cookie is dropped with a “Host: domain.com” and a login via WordPress drops a cookie with a “Domain: .domain.com”
I’ve matched the URL’s, used with and without the integration speedup short-cut, deep/shallow integration, etc… Basically I’ve tried wiggling the settings back and forth, to no avail.
I was actually going to start my integration screen casts, so I suppose this will wait until tomorrow. haha!

I was able to get a WordPress login to drop cookies like “Host: domain.com” but the cookies the integration plugin drops are still “Domain: .domain.com” (If it dropped “Host: domain.com”, or if bbPress knew to look for “Domain: .domain.com” I suspect they’d work just fine.)
Note: I swear this WAS working earlier last week, as I’ve integrated two sites successfully with login/logout working from either direction.
June 15, 2009 at 4:39 am #74529In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Sam Bauers
ParticipantThere is a problem with the integration plugin. Some code which was meant to distinguish between WordPress and WPMU is now failing.
I’ll have a new plugin out soon. When you upgrade the plugin, you will need to remove the settings it previously instructed you to use in wp-config.php and then check the admin page in WordPress for the new settings to use.
June 15, 2009 at 4:26 am #74528In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Tynan Beatty
MemberPlease excuse my previous longwindedness as it seems it was unnecessary. I just tested a site with WP in the base folder and bbP in a subfolder of WP, and a site with WP in a subfolder of the base folder with bbP in a subfolder of WP. Neither site needs anything added to either config file except that the 3 secret keys match between them (my nonce keys also match but that shouldn’t matter). It is also necessary to fill in the wp-admin’s bbPress Integration Plugin settings, and the bb-admin’s WordPress Integration settings.
On any sites I’ve tested where I have WP in a subfolder of the base folder, and bbP in a subfolder of the WP folder, bbP sets 2 logged_in cookies, one with a trailing / and one without, which poses a problem since WP doesn’t get rid of the one without a trailing / and thus WP cannot logout from bbP if the user logs in from bbP. After I made the change mentioned above to bb-settings.php and tested it on both sites mentioned I found both sites integrating as expected and the double logged_in cookie from bbP login was no longer a problem. That’s why I submitted the patch to Trac.
June 15, 2009 at 3:23 am #74362In reply to: Final release candidate 1.0-RC-2 is available.
Sam Bauers
ParticipantThe bad quoting issue is fixed, it was caused by the move to the new
esc_html()function from WordPress.Here’s the quick fix. In
bb-includes/functions.bb-formatting.phpgo to line 83 and replace:$text = esc_html( $text );with:
$text = wp_specialchars( $text, ENT_NOQUOTES );June 15, 2009 at 3:07 am #74561In reply to: Password reset about every 5 minutes
thegiancarlo
MemberI think I have come across a bug or something. Here is my problem. I can only sign into bbpress or wordpress at a time. I have no idea as to what could be causing it. By log in I mean access the Site Admin Dashboard of either.
June 15, 2009 at 2:36 am #74527In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
norights
MemberI was having the same troubles as the original poster. WordPress 2.8 and BBPress 1.0 RC2, whenever I logged into BBP I couldn’t log into WP without logging out of BBP first. All the settings matched in both configs and adding in the suggested code (be it from the WP plugin which gave me a COOKIEHASH, a COOKIE_DOMAIN, a SITECOOKIEPATH, and a COOKIEPATH or from the BBP integration page which gave me just a COOKIE_DOMAIN and a COOKIEPATH) didn’t change anything. I tried junsuijin’s suggestions and now when I log into one it logs me out of the other. Anybody know how to get this running properly?
June 15, 2009 at 1:37 am #74525In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
John James Jacoby
KeymasterI’m able to integrate WP2.8 and BBP1.0 without this.
The settings put out by the Integration plugin are not REQUIREMENTS, they are RECOMMENDED. Basically automated guesses based on your wordpress/bbpress configuration. I can’t say I’ve integrated any two sites in the exact same way, as the cookie and domain setups are almost always different between installs, so it requires some trial and error to get them lined up.
June 15, 2009 at 1:27 am #74524In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Tynan Beatty
MemberOk arturo84, make the changes Sam suggested by dropping the www from your cookie domain settings in each config, then put the Integration plugin code back into wp-config. In wp-config the Integration plugin recommends the following settings among others:
define('SITECOOKIEPATH', '/wp-admin');
define('COOKIEPATH', '/');change SITECOOKIEPATH to match COOKIEPATH like this:
define('SITECOOKIEPATH', '/');
define('COOKIEPATH', '/');Then for the bb-config you should include the recommended integration speedups from the bottom of your bb-admin/options-wordpress.php page, and make sure that the cookiedomain doesn’t have www, and that both cookiepath and sitecookiepath are / as well:
$bb->cookiepath = '/';
$bb->sitecookiepath = '/';Then go into bb-settings.php (in the base bbpress folder). Look to line 768 if you have rc-2. Change line 768 from:
$bb->sitecookiepath = rtrim( trim( $bb->sitecookiepath ), " tnrx0B/" );to this:
$bb->sitecookiepath = rtrim( trim( $bb->sitecookiepath ), " tnrx0B" );
$_bb_sitecookiepath = rtrim( trim( $bb->sitecookiepath ), " tnrx0B/" );Notice the removed / before the ” and that you need to add the second variable below it as that variable is used to set the other cookie paths.
Upload the altered bb-settings.php over your current one and it should fix the problem. Please come back and let us know if it works for you too

peace~
June 14, 2009 at 9:55 pm #74564In reply to: Integrating WPMU trunk and bbPress RC2
johnhiler
MemberThis report sounds similar, although it sounds like they may have been using an earlier RC:
https://bbpress.org/forums/topic/wordpress-mu-271-and-bbpress-10-rc-integration-problem
There was a solution linked from there … hope that points you in the right direction! There was also an integration guide someone created here:
http://umwblogs.org/wiki/index.php/Integrating_WPMu%2C_BuddyPress%2C_and_bbPress
Hope one of those helps!
June 14, 2009 at 7:47 pm #74559In reply to: Password reset about every 5 minutes
johnhiler
MemberSometimes you can lose admin access during integration:
https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101#post-17417
Installing the plugin linked from that post usually restores access – try it out and let us know how it goes!
June 14, 2009 at 7:38 pm #14982Topic: Password reset about every 5 minutes
in forum Troubleshootingthegiancarlo
MemberI managed to successfully install BBpress with wordpress integration. Every thing was going smoothly until both BBpress and WordPress repeatedly keep forgetting my password resulting in me having to reset it every time. Now i can’t get into the admin section of BBpress. I can only log in.
June 14, 2009 at 5:17 pm #65554In reply to: Official themes repository
johnhiler
MemberHopefully we can leverage the WordPress theme directory code:
https://wordpress.org/extend/themes/
In the mean time, do you know of any extra themes beside the ones on bbshowcase?
http://bbshowcase.org/forums/view/available-themes
If we assemble a list of available themes, we’ll be all ready to go when the bbPress theme directory comes out eventually!
June 14, 2009 at 3:48 pm #74519In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Sam Bauers
ParticipantDoes your site always have “www” in front of it?
In any case, try changing the COOKIE_DOMAIN in WordPress like so (note the dot in front of the domain):
define('COOKIE_DOMAIN', '.site.com');Also enter this value in bb-config on the bbPress side:
$bb->cookiedomain = '.site.com';Doing this will log you out, but you should be able to just log back in.
June 14, 2009 at 1:36 pm #14981Topic: cookie integration problem wp2.8 – bb 1.0 rc-2
in forum TroubleshootingArturo
Participanti’ve upgraded wp from 2.7.1 to 2.8, checked all the key for the cookie and
AUTH_KEY in wp-config is the same of BB_AUTH_KEY in bb-config, the same for SECURE_AUTH_KEY – BB_SECURE_AUTH_KEY,
LOGGED_IN_KEY – BB_LOGGED_IN_KEY, NONCE_KEY – BB_NONCE_KEY.
i’ve installed and activated the plugin bbPress Integration 1.0-rc-2 configured with the url of bbpress (http://www.site.com/forums/) saved the option, copy/past in wp-config.php for the “code” in the box which is:
define(‘COOKIEHASH’, ‘e99db1aecc456188d6dc1ccc37528ff8’);
define(‘COOKIE_DOMAIN’, ‘.www.site.com’);
define(‘SITECOOKIEPATH’, ‘/wp-admin’);
define(‘COOKIEPATH’, ‘/’);
i’m able to login in bbpress side, and i see the cookie wordpress_e99db1aecc456188d6dc1ccc37528ff8 for /forums/bb-admin, /forums/bb-plugins, /forums/my-plugins, /wp-admin, /wp-content/plugins and /.
i’ve other 2 cookies bb-user-settings-1 and bb-user-settings-time-1 for /forums/bb-admin.
when i try to go in wp-admin i’m slogged from wp and 2 new cookies appear, wordpress_test_cookie.
when i try to login in WP side i’m redirected to the login page every time.
if i remove the code generated by the Sam’s plugin i can login but i’m logged out from bbpress…
how resolve this problem? thanks for the help.
June 14, 2009 at 9:24 am #74255In reply to: bbPress in a subdomain, on a WPMU install?
Sam Bauers
ParticipantWe have bbPress physically located a subdirectory within WordPress.com (WPMU), you can call that “bbpress”. We do it this way because we point *.wordpress.com to the same host (well not exactly, but for the point of the example let’s say we do). Anyway, because on WordPress.com all blogs are given a subdomain, we need to intercept the forum subdomains and push them to the bbPress code before WPMU executes. That’s what this .htaccess code does.
You could do it without fewer rewrite rules if you didn’t use pretty permalinks.
June 14, 2009 at 9:02 am #74515In reply to: What is the opposite of “deep integration”?
Sam Bauers
ParticipantI tend to use these terms and they are all potentially mutually exclusive, no one type of integration absolutely depends on the other although the first one generally requires the second one to work (99.9% of the time).
- Cookie integration – Sharing of login cookies with WordPress
- User database integration – Sharing of user data tables with WordPress
- Deep integration – Including the WordPress codebase (PHP) inside bbPress to allow use of WordPress functions inside bbPress
June 14, 2009 at 5:46 am #74254In reply to: bbPress in a subdomain, on a WPMU install?
John James Jacoby
KeymasterThanks Sam. I’ve yet to try this, but I will tomorrow and will let you know how it works. I suspect probably better than I could ever do on my own.

My guess, is this works if bbPress is installed in a directory off the WordPress root called “/bbpress/” ?
Does this mean that some/all of the code above goes into the WordPress .htaccess file to prevent it from taking over, or does it go in the bbPress .htaccess file?
June 13, 2009 at 6:44 pm #74483In reply to: Intergration problem, when upgrading wordpress 2.8
Anonymous User
InactiveHi again,
the code doesn’t work 100% in my installation.
After the Login in WordPress – my testuser is shown as “logged”, but I can’t go to the Administration.
The System doesn’t redirect me. At the same time my testuser ist shown as “logged in” in bbPress and there I can go to the admin.When I test the login from bbPress first nothing seems to happen. I’m not logged in in both bbPress and WordPress.
hmpf … So … I’m going to test tomorrow again.
June 13, 2009 at 6:39 pm #74354In reply to: Final release candidate 1.0-RC-2 is available.
Sam Bauers
ParticipantThe tag issue is fixed.
This list contains all the outstanding reported issues which I am aiming to fix before the 1.0 release. At the moment there are only two things there. If you know of an issue that isn’t there, then please add it immediately.
Other remaining tasks before 1.0 is released all have to do with finishing the admin screens. This will be heavily based on WordPress.
We also have Ben Dunkle – the guy who created the WordPress admin icons – working on some missing icons (forums, topics, posts).
June 13, 2009 at 8:10 am #74482In reply to: Intergration problem, when upgrading wordpress 2.8
Anonymous User
InactiveHi Vizworld,
thanks for your fix – I will test it soon – after a little “distance” from my computer.

Today – it’s to sunny … so i must go to the mountains.
June 13, 2009 at 7:31 am #74464In reply to: IF User is logged in DO, if not DO…
John James Jacoby
KeymasterWhoops… Need to remember to switch out of WordPress support mode! Totally my fault.
June 13, 2009 at 2:56 am #74481In reply to: Intergration problem, when upgrading wordpress 2.8
Vizworld
MemberOk, I fixed it.. Kinda.. It’s a nasty fix, but it _does_ work (I’m using it on http://www.Vizworld.com now).
A quick cliffnotes version:
Took 2 main changes.. a) I had to update the validate_auth function in the _freshly_Baked_cookies plugin to make it work with the new password-including authentication. b) I had to modify the bb-include/pluggable.php to use the new algorithms for salting & auth (wp_salt and wp_auth). The ones that ship with bbpress don’t pass a Schema around, and apparently it’s important now.
If you want the two files, you can download them from http://www.yeraze.com/bbpress-wp2.8-fbc_fix.tgz . i really hope _ck_ can take a look at this and see if it can all be encapsulated within the fbc plugin.. As it is now, soon as I upgrade bbpress I’ll lose it again.
-
AuthorSearch Results