Problem begins here
I've found reason, it's Post Count Plus plugin. I've installed bbPress and this plugin on my localhost and got such error too. What can I do to turn it on?
That's a new bug for post-count-plus.
I will have to investigate.
Actually you are the first to report such a problem.
Hundreds of others are using it.
I think it might be a conflict with another plugin.
Where is the source code for "cyr_nickname" - I need to see what it does?
_ck_
it allow using cyrrillic symbols in nicknames. plugin's code
<?php
/*
Plugin Name: CyrNickName
Plugin URI: http://bbpress.ru/downloads/plugins/
Description: This plugin enable cyrillic characters in nickname of users. Very usefull for russian-speaking users of bbPress.
Author: Alex <alex@bbpress.ru>
Contributor: Alex <alex@bbpress.ru>
Author URI: http://bbpress.ru/
Version: 0.2
*/
function sanitize_user_cyr( $raw_username, $username, $strict = false ) {
$raw_username = $username;
$username = strip_tags($username);
// Kill octets
$username = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '', $username);
$username = preg_replace('/&.+?;/', '', $username); // Kill entities
// If strict, reduce to ASCII for max portability.
// if ( $strict )
// $username = preg_replace('|[^a-z0-9 _.\-@]|i', '', $username);
return apply_filters('sanitize_user_cyr', $username, $raw_username, $strict);
}
add_action('sanitize_user', 'sanitize_user_cyr', 0, 3);
?>
I assume that forum is not "live" right now, so if you could, try turning off all other plugins EXCEPT post-count-plus and leave it on.
See if post-count-plus works when the others are inactive?
_ck_
Forum is live right now, it's just school's forum
not big portal with hundreds of visitors
As I writed, I tryed enabling plugin on just-installed bbPress on my localhost and still got that error. But if you wish, I can turn off all the plugins for some time. I even can give you keymaster's login and password if it's nessesary
If you have a localhost copy for testing, see if you can run with
*only* post-count-plus and no other plugins?
Yes 1.1.5 is the newest.
Are you using the default settings for post-count-plus in the admin menu?
RSS feed for this topic