Christopher Finke
Forum Replies Created
-
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet is not workingThat sounds like a file permissions error. Your web host will be able to help you fix that.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Change when spam is removedIf you put this code in a file called reduce-akismet-auto-delete-time.php in wp-content/mu-plugins/, it should have the effect you’re looking for:
<?php function reduce_akismet_auto_delete_time( $days ) { return 5; } add_filter( 'akismet_delete_comment_interval', 'reduce_akismet_auto_delete_time' );For more information on writing plugins, see https://www.wpexplorer.com/writing-simple-wordpress-plugin/
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Change when spam is removedTo reduce the time to 5 days, you’d have to write a small plugin to add this filter:
function reduce_akismet_auto_delete_time( $days ) { return 5; } add_filter( 'akismet_delete_comment_interval', 'reduce_akismet_auto_delete_time' );There’s not a way to instantly delete comments marked as spam, but you could modify the function above to return
0instead of5to have comments deleted every day from spam.Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet is not workingHi Frederick,
Can you contact us at support@akismet.com so we can figure out what’s going wrong?
Thanks,
Chris
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet won’t uninstallI don’t know. Which files do you not have permission to change, and what are their permissions?
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet won’t uninstallHi @mhales86,
If the permissions don’t allow you to uninstall, then it is a hosting problem. (The file permissions are likely also what’s preventing you from updating the plugin.) We don’t have any control over what the permissions are set to for Akismet plugin files. Your host will be able to either reset the permissions to give you write access or delete the files for you so you can reinstall.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Cannot delete or update pluginIt sounds like a file permissions issue with the folder; you may have “read” permissions but not “write” (which you’d need in order to update it). Your webhost should be able to help you fix this.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet .htaccess created or editedThose are the correct contents of .htaccess, so nothing has changed there (unless you or a plugin had previously changed it to something else).
We did update our changelog file a few days ago, as mentioned here: https://wordpress.org/support/topic/file-change-warning-8/
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Still deleting spam after 15 daysThe German translation has been updated, so this issue should be fixed soon.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] File change warningYou can ignore this. We just updated our readme to add more details and FAQs and moved older changelog entries into changelog.txt.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Still deleting spam after 15 daysDo you mean that you checked the box labeled “Silently discard the worst and most pervasive spam so I never see it.”? That is only referring to a certain type of spam that is so obviously spam, there’s no point in reviewing it.
If you want spam to be deleted sooner than 15 days, you would need to add a plugin that sets the
akismet_delete_comment_intervalfilter to zero, like in this example: https://www.engagewp.com/empty-akismet-spam-queue-daily/Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Still deleting spam after 15 daysThanks for the report; I’ll be looking into this today.
Looking at your missed spam reports, it appears that these would all be caught if the spammers tried posting them again, so Akismet has started adjusting to them. Please do continue marking any that get through as spam.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] CLI IntegrationAkismet does already have a WP-CLI integration for checking comments and retrieving stats, but to set the API key, you could do:
wp option add wordpress_api_key [api key here]
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] wp_blacklist_check: DeprecatedThanks for the heads up; we’ll update the plugin to only use that function if wp_check_comment_disallowed_list is not available.