akismet
Last commit date
akismet.gif
15 years ago
akismet.php
15 years ago
legacy.php
15 years ago
readme.txt
15 years ago
readme.txt
80 lines
| 1 | === Akismet === |
| 2 | Contributors: matt, ryan, andy, mdawaffe, tellyworth, automattic |
| 3 | Tags: akismet, comments, spam |
| 4 | Requires at least: 2.0 |
| 5 | Tested up to: 3.0 |
| 6 | Stable tag: 2.4.0 |
| 7 | License: GPLv2 |
| 8 | |
| 9 | Akismet checks your comments against the Akismet web service to see if they look like spam or not. |
| 10 | |
| 11 | == Description == |
| 12 | |
| 13 | Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you |
| 14 | review the spam it catches under your blog's "Comments" admin screen. |
| 15 | |
| 16 | Want to show off how much spam Akismet has caught for you? Just put `<?php akismet_counter(); ?>` in your template. |
| 17 | |
| 18 | See also: [WP Stats plugin](http://wordpress.org/extend/plugins/stats/). |
| 19 | |
| 20 | PS: You'll need an [Akismet.com API key](http://akismet.com/get/) to use it. |
| 21 | |
| 22 | == Installation == |
| 23 | |
| 24 | Upload the Akismet plugin to your blog, Activate it, then enter your [Akismet.com API key](http://akismet.com/get/). |
| 25 | |
| 26 | 1, 2, 3: You're done! |
| 27 | |
| 28 | == Changelog == |
| 29 | |
| 30 | = 2.4.0 = |
| 31 | |
| 32 | * Spell out that the license is GPLv2 |
| 33 | * Fix PHP warnings |
| 34 | * Fix WordPress deprecated function calls |
| 35 | * Fire the delete_comment action when deleting comments |
| 36 | * Move code specific for older WP versions to legacy.php |
| 37 | * General code clean up |
| 38 | |
| 39 | = 2.3.0 = |
| 40 | |
| 41 | * Fix "Are you sure" nonce message on config screen in WPMU |
| 42 | * Fix XHTML compliance issue in sidebar widget |
| 43 | * Change author link; remove some old references to WordPress.com accounts |
| 44 | * Localize the widget title (core ticket #13879) |
| 45 | |
| 46 | = 2.2.9 = |
| 47 | |
| 48 | * Eliminate a potential conflict with some plugins that may cause spurious reports |
| 49 | |
| 50 | = 2.2.8 = |
| 51 | |
| 52 | * Fix bug in initial comment check for ipv6 addresses |
| 53 | * Report comments as ham when they are moved from spam to moderation |
| 54 | * Report comments as ham when clicking undo after spam |
| 55 | * Use transition_comment_status action when available instead of older actions for spam/ham submissions |
| 56 | * Better diagnostic messages when PHP network functions are unavailable |
| 57 | * Better handling of comments by logged-in users |
| 58 | |
| 59 | = 2.2.7 = |
| 60 | |
| 61 | * Add a new AKISMET_VERSION constant |
| 62 | * Reduce the possibility of over-counting spam when another spam filter plugin is in use |
| 63 | * Disable the connectivity check when the API key is hard-coded for WPMU |
| 64 | |
| 65 | = 2.2.6 = |
| 66 | |
| 67 | * Fix a global warning introduced in 2.2.5 |
| 68 | * Add changelog and additional readme.txt tags |
| 69 | * Fix an array conversion warning in some versions of PHP |
| 70 | * Support a new WPCOM_API_KEY constant for easier use with WordPress MU |
| 71 | |
| 72 | = 2.2.5 = |
| 73 | |
| 74 | * Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls |
| 75 | |
| 76 | = 2.2.4 = |
| 77 | |
| 78 | * Fixed a key problem affecting the stats feature in WordPress MU |
| 79 | * Provide additional blog information in Akismet API calls |
| 80 |