Download the PHP package cbtech/akismet-php without Composer

On this page you can find all versions of the php package cbtech/akismet-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package akismet-php

akismet-php

Stop spam from hitting your website comments or content using Akismet.

Getting Started

First, get your Akismet key (if you still do not have one) from here: https://akismet.com/

Then install the package using Composer and add this line to your statement.

And finally run from terminal:

Code Sample

Available Methods

verifyKey()

Checks if your key is valid. Does not take any parameters.

commentCheck()

This is the call you will make the most. It takes a number of arguments and characteristics about the submitted content and then returns a thumbs up or thumbs down. Performance can drop dramatically if you choose to exclude data points. The more data you send Akismet about each comment, the greater the accuracy. We recommend erring on the side of including too much data.

This method takes an array of parameters containing any amount of the following keys.

Parameter Required Description
Yes IP address of the comment submitter.
Yes User agent string of the web browser submitting the comment - typically the cgi variable. Not to be confused with the user agent of your Akismet library.
(note spelling) - The content of the header should be sent here.
- The permanent location of the entry the comment was submitted to.
- May be blank, comment, trackback, pingback, or a made up value like "registration".
- Name submitted with the comment.
- Email address submitted with the comment.
- URL submitted with comment.
- The content that was submitted.
- The UTC timestamp of the creation of the comment, in ISO 8601 format. May be omitted if the comment is sent to the API at the time it is created.
- The UTC timestamp of the publication time for the post, page or thread on which the comment was posted.
- Indicates the language(s) in use on the blog or site, in ISO 639-1 format, comma-separated. A site with articles in English and French might use "en, fr_ca".
- The character encoding for the form values included in comment_* parameters, such as or .
- The user role of the user who submitted the comment. This is an optional parameter. If you set it to "administrator", Akismet will always return false.
- This is an optional parameter. You can use it when submitting test queries to Akismet.

submitSpam()

This call is for submitting comments that weren't marked as spam but should have been.

It is very important that the values you submit with this call match those of your comment-check calls as closely as possible. In order to learn from its mistakes, Akismet needs to match your missed spam and false positive reports to the original comment-check API calls made when the content was first posted. While it is normal for less information to be available for submit-spam and submit-ham calls (most comment systems and forums will not store all metadata), you should ensure that the values that you do send match those of the original content.

This method takes an array of parameters containing any amount of the following keys.

Parameter Required Description
Yes IP address of the comment submitter.
Yes User agent string of the web browser submitting the comment - typically the cgi variable. Not to be confused with the user agent of your Akismet library.
(note spelling) - The content of the header should be sent here.
- The permanent location of the entry the comment was submitted to.
- May be blank, comment, trackback, pingback, or a made up value like "registration".
- Name submitted with the comment.
- Email address submitted with the comment.
- URL submitted with comment.
- The content that was submitted.

submitHam()

This call is intended for the submission of false positives - items that were incorrectly classified as spam by Akismet. It takes identical arguments as comment check and submit spam.

Remember that, as explained in our submit-spam documentation, you should ensure that any values you're passing here match up with the original and corresponding comment-check call.

This method takes an array of parameters containing any amount of the following keys.

Parameter Required Description
Yes IP address of the comment submitter.
Yes User agent string of the web browser submitting the comment - typically the cgi variable. Not to be confused with the user agent of your Akismet library.
(note spelling) - The content of the header should be sent here.
- The permanent location of the entry the comment was submitted to.
- May be blank, comment, trackback, pingback, or a made up value like "registration".
- Name submitted with the comment.
- Email address submitted with the comment.
- URL submitted with comment.
- The content that was submitted.

Additional Documentation

Akismet API Documentation: https://akismet.com/development/api/#detailed-docs

Creator

Antonio Tajuelo


All versions of akismet-php with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
guzzlehttp/guzzle Version ~6.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package cbtech/akismet-php contains the following files

Loading the files please wait ....