Ab Version v1.6 ist kein Einbau mehr nötig!
Der CTXtra bringt dann einen Spamfilter für ALLE Scripte mit.
SPAMFILTER - Anleitung (v1.4) für:Im Moment unterstützt der CTXtra nur 5 Forensoftwaren gegen SPAM... aber bei Anfrage auf eine weitere Unterstützung kann ich es in kurzer Zeit ein Update rausbringen.SMF - Öffne die "Sources/Post.php"
- Suche
function Post2()
{
global $board, $topic, $txt, $db_prefix, $modSettings, $sourcedir, $context;
global $ID_MEMBER, $user_info, $board_info, $options, $func;
- füge danach folgendes ein:
// CTXtra - SPAM-Protector
ct_spam_protector();
// CTXtra - SPAM-Protector - END
PHPKit- Öffne die "forum/newpost.php"
- Suche
<?php
- füge danach folgendes ein:
// CTXtra - SPAM-Protector
ct_spam_protector();
// CTXtra - SPAM-Protector - END
phpBB2- Öffne die "posting.php"
- Suche
else if ( $submit || $confirm )
{
//
// Submit post/vote (newtopic, edit, reply, etc.)
//
$return_message = '';
$return_meta = '';
- füge danach folgendes ein:
// CTXtra - SPAM-Protector
ct_spam_protector();
// CTXtra - SPAM-Protector - END
DZCP- Öffne die "inc/config.php"
- Suche
include_once("ctracker/ctracker.php");
- füge danach folgendes ein:
// CTXtra - SPAM-Protector
ct_spam_protector();
// CTXtra - SPAM-Protector - END
phpFusion- Öffne die "maincore.php"
- Suche
include_once("ctracker/ctracker.php");
- füge danach folgendes ein:
// CTXtra - SPAM-Protector
ct_spam_protector();
// CTXtra - SPAM-Protector - END