Search Results for 'code'
-
AuthorSearch Results
-
June 15, 2009 at 7:52 am #74593
In reply to: HOW do i write a plugin
Sam Bauers
ParticipantGo into the bbPress directory in a terminal (Mac/Linux/Unix)
All filters:
grep -r -n apply_filterss*( . | grep -v .svn/ | grep -v @usesAll actions:
grep -r -n do_actions*( . | grep -v .svn/ | grep -v @uses && grep -r -n do_action_ref_arrays*( . | grep -v .svn/ | grep -v @usesJune 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: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 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 2:49 am #66490In reply to: TalkPress suggestions
John James Jacoby
KeymasterI think I’ve been salivating for 10 months waiting for this.
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: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 5:33 pm #74522In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Tynan Beatty
MemberOk I think I found a fix for this and I’m submitting a patch to trac now
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 4:28 pm #74521In reply to: cookie integration problem wp2.8 – bb 1.0 rc-2
Tynan Beatty
MemberThis gave me a couple ideas to fix both our problems. Changing
define('SITECOOKIEPATH', '...');to match
define('COOKIEPATH', '...');fixed half of my problem (in other words, removing the wp-admin from the end of SITECOOKIEPATH, since I noticed that having it there sets a cookie with a Path like /yawp/wp-adminwp-admin), I can at least include the Integration plugin’s suggested settings in wp-config now. But I still get a second logged_in cookie when logging into the bbp side, that logging out from WP cannot remove. IE, /yawp/ and /yawp for the Path:I haven’t figured out how to make bbP stop giving the second cookie without the trailing / but at least it now removes the one with the trailing / when logging out from WP (WP still thinks it is logged in due to the non-trailing slash cookie and shows the site admin link in meta, but won’t allow me re-enter the admin after logging out. At that point it acts as the situation arturo84 describes as his original problem, but also fails to logout from the bbp side)!
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 3:34 pm #74358In reply to: Final release candidate 1.0-RC-2 is available.
Ipstenu (Mika Epstein)
ModeratorSingle quotes are bad HTML anyway and shouldn’t be used…
Checking with trunk: If I add in a link:
<a href="http://bbpress.org">This is a link</a>it works. If I edit that post, I get this:<a href="http://bbpress.org"">This is a link</a>It gets even weirder as it goes on.Why is this really familiar? I think we had this once before…
(tags working, pagination of users working. We’ll get there!
)
June 14, 2009 at 2:50 pm #74357In reply to: Final release candidate 1.0-RC-2 is available.
the_Wish
MemberThank you for your continuing work and effort on bbPress.
I upgraded from RC1 to RC2 and something seems to be messy with the way additional markup is handled.
So far, users could use syntax like this:
<a href='http://bbpress.org'><img src='https://bbpress.org/test.jpg' /></a>to link a picture for example.
Now with RC2, the ‘…’ upper commas aren’t recognized any longer but instead you’d have to write:
<a href=http://bbpress.org><img src=https://bbpress.org/test.jpg /></a>and “…” quotation marks will be automatically added.
Now the problem is that once the user edits a comment with such markup later on, the now present “…” will again not be recognized and turned into broken code instead.
June 14, 2009 at 2:49 pm #74501In reply to: Massbase.com – My Theme
Ashish Kumar (Ashfame)
ParticipantLooking forward to it.
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 11:54 am #74470In reply to: Call to undefined function: add_option()
Florian
MemberThanks. I manually added your fix to my installation and it seems to work fine.
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:19 pm #74469In reply to: Call to undefined function: add_option()
Sam Bauers
ParticipantChange that
add_option()tobackpress_add_option()This is now fixed in trunk.
June 13, 2009 at 11:44 am #74468In reply to: Call to undefined function: add_option()
Florian
MemberFor the time being I could fix the problem. Since I do not know what the implications are, it would probably still be better if one of you guys would take a look on it.
Line 654 and 655 are:
if ( true === $elapseDelay )
add_option( ‘disable_fsockopen’, $endDelay, null, true );
Since the forum works fine most of the time, I assume that add_option thing isn’t terribly important, so I just extended the if statement:
if ( true === $elapseDelay && function_exists(“add_option”))
Couldn’t see any negative side effects yet, but since this error only appeared sometimes this might be an illusion.
In any way I have no idea what this is supposed to do in the first place, so it’s a bit of blind hacking…
June 13, 2009 at 10:39 am #74447In reply to: how do i make a post a sticky
Shagalaga
Memberhttp://img41.imageshack.us/img41/4955/stickyi.jpg
this should be at the bottom
June 13, 2009 at 10:30 am #74466In reply to: IF User is logged in DO, if not DO…
Shagalaga
Member<?php if ( !bb_is_user_logged_in() ) : ?>
HTML
<?php endif; // bb_is_user_logged_in() ?>
this very good to add extra information or Ads for people who are not logged in

Yes it works!
-
AuthorSearch Results