Search Results for 'bbpress'
-
Search Results
-
I just realized today if you are using a bunch of plugins that have their options stored in the bbpress meta, your query count has jumped on every page in bbPress 1.0.x
Apparently 1.0 now has a reserved list of option names that are pre-loaded, instead of *all* of them like 0.9 could. Plugins have to add their desired names to the pre-caching option, which of course 100% of all pre-exisiting plugings are not aware of, so they all cause an extra query in 1.0
This isn’t a magic bullet by any means but you can at least fix this behavior. There isn’t any flag you can turn on to cache all (that would be far too easy) but you can fool the routine by loading all the options before it gets around to it.
Simply make the below into a mini-plugin, or right click here
and save as
_load-options.phpin yourmy-plugins/directoryI strongly suggest you save it with a leading underscore so it auto-loads.
<?php
/*
Plugin Name: Load Options
*/
global $bbdb;
$results = $bbdb->get_results( "SELECT meta_key, meta_value FROM $bbdb->meta WHERE object_type = 'bb_option' ");
foreach ( $results as $options ) {
wp_cache_delete( $options->meta_key, 'bb_option_not_set' );
wp_cache_set( $options->meta_key, maybe_unserialize( $options->meta_value ), 'bb_option' );
}
?>Hi
I’ve just installed the new version of BBPress and followed the instructions to integrate
it with WP.
When I log in and click on Admin I just get a plain text page, where my only options
are to choose the template. So basically I can’t go any further with this install…
Does anyone have a way to fix this please
Hi I have a problem and was hacked. How do I completely remove it from my domain. I can’t even access my wp-admin or anything.
I am kind of a noob also when it comes to coding so if someone could help explain the removal process I would greatly appreciate it. Thanks a bunch guys.
Hi there,
Its amazing how much these forums have helped through reading about other people’s problems and solutions. I was able to get everything with integration working perfectly (albeit several installs later), but there has been one problem that I haven’t been able to find a direct answer for (maybe I am just using the wrong keywords to search).
What I am trying to do is have all the bbPress login/registration get directed to the WordPress (WPMU) login/registration pages. I am running RPX for login/registration at the WPMU page, and it has worked flawlessly for OpenID integration, but I can’t find a way to make all the bbPress goodness get directed to WPMU and then back to my forums.
Thanks ahead of time!
Topic: Admin not update… Why?
Upgrade from 0.9.0.4 to 1.0.2 is pretty good but “content 2” in 1 box not upgrade… see picture. http://img205.imageshack.us/img205/4599/bbpress102.png
Topics, tags created on bbPress 1.0.2 many…
Topic: BBpress vector logo?
Hey, is there a BBpress vector logo available to incorporate into custom themes, in the footer?
Regards
Will
Topic: Sometimes Less Is Just Less
I’m sorry but sometimes less is just less. I looked forward to having a lite integrated forum, but it doesn’t look like bbPress is ready for that.
Saying bbPress can be integrated with WordPress is like saying your seat can be used as a flotation device.
The fact this site isn’t integrated should have been a tip off.
If you are looking for anything beyond just cookie integration good night and good luck.
Sure, theme integration can be done via some costly hacks, but its the simple stuff that has my head spinning. Something simple like a bbPress login box in WordPress is more complicated and less likely than Mideast peace.
I just don’t get it….
It seems like all the “social cms” resources and ideas are being put into Buddypress. Can’t we have some of those basic features in the single WP install?
WP-United for phpbb has these features. Why is it so hard for bbPress?
Don’t get me wrong, the people supporting BB here in this forum are great. Problem is there just are not enough of them to fill in the big gaps created at inception.
Sorry for the rant. I still would love to use bbPress, I hope one day soon they will fulfill its promise. Until then:
I’m staying on bbPress for now, because it is the only option for a lightweight forum with a plugin model. I’m very concerned about the 1.0 path though, and am starting to think through whether or not I want to stay on the bbPress platform in the long term. So I especially appreciate hearing your concerns.