desipio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posting too quickly error in 2.5OK, 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.
Forum: Fixing WordPress
In reply to: Posting too quickly error in 2.5Bumped because I know I’m not the only one having this problem.
Forum: Fixing WordPress
In reply to: Show commentor’s e-mail addressThank 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.
Forum: Installing WordPress
In reply to: Upgrade problem Step 1 will not finishAnother 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.
Forum: Installing WordPress
In reply to: Upgrade problem Step 1 will not finishHere’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?
Forum: Installing WordPress
In reply to: Upgrade problem Step 1 will not finishI 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.