Allerdings ist niemand perfekt, und niemand ist perfekt! Akismet ist nicht perfekt. Unter den Nachrichten, die Akismet als Spam eingestuft hat, finde ich oft Nachrichten von „guten Leuten“. Manchmal werden sie jedoch nach langer Zeit automatisch gelöscht, was zum Verlust wertvoller Freundschaften und Nachrichten führt.
Vergessen Sie nicht, __YOUR_AKISMET_KEY__, __YOUR_WEBSITE_URL__ und __YOUR_NAME__ im Code zu ändern
http://www.script-tutorials.com/akismet-spam-protection/
index.php
Kopieren Sie den Code Der Code lautet wie folgt:
>require_once ('classes/Akismet.class.php'); $sWebsiteUrl;
var $sAuthEml; var $sAuthUrl;
var $oAkismet; für Variablen
$this->sWebsiteUrl = '__YOUR_WEBSITE_URL__';
$this->sAuthName = '__YOUR_NAME__'; ;
// Akismet-Initialisierung
$this->oAkismet = new Akismet($this->sWebsiteUrl ,$this- >sMyAkismetKey);
$this->oAkismet->setCommentAuthor( $this->sAuthName);
$this->oAkismet->setCommentAuthorEmail($this->sAuthEml); );
}
public function isSpam($s) {
if (! $this->oAkismet) return false; ;
return $this->oAkismet->isCommentSpam();
}
}
echo < ;<
'; <br>print_r($_POST); <br>echo ''