If you run WordPress on a server that uses any proxy or caching system, you might find yourself with a confused WordPress flood control system.
You are posting comments too quickly. Slow down.
To WordPress, on some servers, every user looks like they are coming from the same IP. So what's the solution? Well, I would recommend downloading a more complex flood protection plugin then the built in WP version.
If you want to hack your own solution, look in the file comments.php and modify this code:
$flood_die = apply_filters('comment_flood_filter', false, $time_lastcomment, $time_newcomment);
if ( $flood_die ) {
do_action('comment_flood_trigger', $time_lastcomment, $time_newcomment);
wp_die( __('You are posting comments too quickly. Slow down.') );
}
}













Post new comment