Search Results for 'bbpress'
-
Search Results
-
Topic: bbPress community in Finnsih
Hi
I start WordPress and bbPress community in Finnish. There support forum in finnish and support blog in Finnish. In support blog helpful article how enjoy bbPress and WordPress better. In Support forum everyone can make a question with bbPress or WordPress. Hope this help Finnsih starters with bbPress and WordPress.
Well I managed to do it. Goodbye SMF and hello bbPress with all the data intact.
http://www.winextra.com/forums/
I still have one part of my custom theme to fix up but for the remaining 99% everything is working great. So yes a conversion can be done – it ain’t easy but it is possible.
Topic: Import from SmartMachines?
We currently have a forum on SmartMachines but would like to migrate it over to a new forum using bbPress. Is it possible to import the data and structure?
Topic: +/-, threading and anonymity
hello all
i’m new to bbPress, i have some questions that i didn’t find answer to.
1. is it possible to organize a thread with “+/-” feature? i mean when pressing “+” the thread opens with all the posts, and pressing “-” causes it wrapping.
2. is it possible to make topics threaded, not flat? i searched forums here but all the answers about it are not distinct. the majority couldn’t make it work (the plugin).
3. is it possible to make anonymous posts?
this is my need, not just an interest. thanks.
I recently discovered that I was getting quite a few crawl errors for a bbPress installation (1.0.2) and the common denominator was special characters in the title. The Google crawler was changing the hex characters in the encoded URL to uppercase, and this was causing a 302 redirect.
I tracked the 302 redirect to bb_repermalink(), which detects the uppercase hex as a discrepancy with the “correct” permalink. I made a simple plugin that works around the issue (see below).
Has anyone else seen this issue? How did you deal with it?
I’ve described this in a little more detail at http://theblogeasy.com/2009/12/26/bbpress-and-encoded-urls-with-uppercase-hex/.
function _permalink_fix( $permalink, $location )
{
$matches = array();
/* are there any URL encoded hex characters with uppercase in the request URI? */
if (preg_match( '#%([0-9][A-F]|[A-F][0-9]|[A-F][A-F])#', $_SERVER['REQUEST_URI'], $matches ))
{
/* replace ALL URL encoded HEX parameters with uppercase versions */
$patterns = array(
'#%([0-9])([a-f])#e',
'#%([a-f])([0-9])#e',
'#%([a-f][a-f])#e' );
$replacements = array(
'"%" . $1 . strtoupper("$2")',
'"%" . strtoupper("$1") . $2',
'"%" . strtoupper("$1")' );
// print_r( $patterns ); print_r( $replacements );
$permalink = preg_replace( $patterns, $replacements, $permalink );
}
return $permalink;
}
add_filter('bb_repermalink_result', '_permalink_fix', 10, 2);
