Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter desipio

    (@desipio)

    OK, I fixed it. The <15 is in a different spot in 2.5 but it’s still in wp-includes/comment.php.

    /**
    * wp_throttle_comment_flood() – {@internal Missing Short Description}}
    *
    * {@internal Missing Long Description}}
    *
    * @since 2.1.0
    *
    * @param unknown_type $block {@internal Missing Description}}
    * @param unknown_type $time_lastcomment {@internal Missing Description}}
    * @param unknown_type $time_newcomment {@internal Missing Description}}
    * @return unknown {@internal Missing Description}}
    */
    function wp_throttle_comment_flood($block, $time_lastcomment, $time_newcomment) {
    if ( $block ) // a plugin has already blocked… we’ll let that decision stand
    return $block;
    if ( ($time_newcomment – $time_lastcomment) < 15 )
    return true;
    return false;

    I changed this line:

    if ( ($time_newcomment – $time_lastcomment) < 15 )

    to: if ( ($time_newcomment – $time_lastcomment) < -3800 )

    No more posting too quickly error.

    I’m still not sure why flood control isn’t something you can adjust through Options, though.

    Thread Starter desipio

    (@desipio)

    Bumped because I know I’m not the only one having this problem.

    Thread Starter desipio

    (@desipio)

    Thank you for your help on both questions. It’s my readers who are asking for them. So they will have brought it upon themselves.

    Actually, they never post their real e-mails. They enjoy making up phony e-mail addresses to go with whoever they pretend to be posting as (during Cubs’ games…usually the players making pithy comments about the games) and like to be clever, and often vulgar e-mails. I will make sure to warn the innocent however, not to use real e-mail addresses.

    Again, thanks.

    Thread Starter desipio

    (@desipio)

    Another thing. 90 percent of the upgrade has to have worked when I run it though. I can go to wp-admin and everything’s there. All my old posts, all of the comments to those posts, and every single option is not only there but works. The only thing that hasn’t happened is that the index.php page hasn’t been built. Or am I wrong that is actually the 90 percent of the upgrade that hasn’t happened yet?

    BTW, the host is Fat Cow and I’ve had nothing but good luck with them over the past year and a half or so.

    Thread Starter desipio

    (@desipio)

    Here’s another of the things I don’t get though. This morning, I restored WordPress 1.2.2 and everything worked just fine. Could it be that all I have to ask them to do is to allow the upgrade process to work (raise the file size minimum temporarily), and then WordPress 1.5 will hum along at its space saving best after that?

    Thread Starter desipio

    (@desipio)

    I talked with my tech support and they identified the problem as being that the size of the file being processed during the upgrade is too big and is creating a php-fatal error. Are they full of it? Wrong? Or do I need to have them set it to allow a one time big assed file process during upgrade? Any help would be a lifesaver.

Viewing 6 replies - 1 through 6 (of 6 total)