plugin: serendipity_event_spamblock
In this month my blog caused 7.01 GB traffic?
In access_log most antries are Trackbackspams like this:
"POST /comment.php?type=trackback&entry_id=XXX...."
In antispam plugin I disabled trackbacks und use Akismet.
I added this code
Code: Select all
# BEGIN ANTI SPAM
<Files comment.php>
# short 403 error-message
ErrorDocument 403 "403 Forbidden
# Mark bots whose user agent name is starting with "TrackBack" as SPAM
BrowserMatch ^TrackBack is_trackback_spammer
# Mark bots don't sending a user agent name at all as SPAM
BrowserMatch ^$ is_trackback_spammer
# Lock them out
Order Allow,Deny
Allow from all
deny from env=is_trackback_spammer
</Files>
# END ANTI SPAMAND I added this code
Code: Select all
if ($_REQUEST['type'] == 'trackback') die('Disabled');Can I do more to prevent trackback spam? This entry is furthermore listed in access_log.
Another frequent entry in access_log is:
"/index.php?/plugin/fetchAvatar_d41d8cd98f00b204e9...."
I disabled Avatar caching but this entry is furthermore listed in access_log very often.
May I delete this folders?
/templates_c/serendipity_event_avatar
/templates_c/favatar
Thanks!