Christopher Finke
Forum Replies Created
-
Actually, I’ve been able to reproduce it with just Simple Image Sizes and nothing else. I’m looking into what the root cause is, and I’ll follow up here.
Forum: Fixing WordPress
In reply to: Fatal Error Line 50 Akismet relatedIt’s not an issue with Akismet itself, but rather an issue with an incomplete update. Go to the page /wp-admin/update-core.php and click the “Re-install now button”, and that should hopefully fix it.
I can’t reproduce this, but it sounds like an issue another user was having, and it ended up being related to their theme. What theme are you using?
I can’t reproduce this with newly installed versions of both plugins. What happens if you reset the values at /wp-admin/options-general.php?page=zia3-css-js%2Fzia3_meta_options.php ?
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Bug Found!Nice catch, I’ve committed your fix in revision 1402654.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Update Akismet Links to HTTPSThanks for the reminder; all eligible http:// links have been updated to https:// as of this changeset: https://plugins.trac.wordpress.org/changeset/1398490/akismet/trunk
That’s correct. If you wait long enough and it still takes multiple clicks, that would be a bug.
It checks the comments in the Pending queue, 100 at a time, as long as you leave the page open. It can take some time before it finishes, which is why it might seem like it takes multiple clicks.
No changes were made to the debug logging; is it possible you had manually edited the last version of the plugin to disable Akismet logging?
You can disable Akismet logging by adding a filter to
akismet_debug_logthat returns false.Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Do you empty spam queue or leave it?You can feel free to delete anything in the spam queue; those comments have already been sent to Akismet for it to learn from.
Akismet will automatically delete spam out of the spam queue after it is 15 days old.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Conflict with Gravity Forms 1.9.16I have been unable to reproduce the problem. What happens exactly when you try and submit a form?
You should be able to disable Akismet integration in the Gravity Forms settings; if that doesn’t fix it, you can disable the Akismet plugin. If you don’t have comments open on your site, then that’s probably fine.
I can’t reproduce the problem with Akismet 3.1.8. What other plugins are you running? Is the URL it’s trying to load /wp-admin/profile.php?
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] IPv6 addresses blocked from postingWhen I look at the plugin code (version 3.1.8), this is how we’re collecting the IP address:
$comment['user_ip'] = self::get_ip_address();self::get_ip_address()looks like this:public static function get_ip_address() {
return isset( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : null;
}There’s no sanitation done on that parameter before it’s sent to the API, so either
$_SERVER['REMOTE_ADDR']is borked, another plugin is interfering, or there’s a subtle bug somewhere in Akismet.Can you email finke@automattic.com with your blog URL? I can walk you through some debugging steps to figure out where things are going wrong.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] File not found errorAkismet will still work, but your site may be slower for some users.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] File not found errorAre you using the Optimize Press theme? If so, you could either downgrade to Akismet 3.1.7 or wait for their fix, which is supposed to be coming this week.