#31 2009-08-09 19:21:08

Gocom
Moderator
omega
Real name: Jukka Svahn
From: Finland
Known languages: EN, FI
Website

Re: rah_comment_spam

AndrijaM wrote:

Hi, any news about this email notification issue :)

  1. Done: Tested on different systems.
  2. Status: Can’t replicate.
  3. Future: When I get the time, and the financial thing corrected. I will test it some more.

Can’t see it, can’t fix it.

Last edited by Gocom (2009-08-09 19:21:47)


Rah-plugins | What? I’m a little confused… again :-) <txp:is_god />

Offline

 

#32 2009-08-11 14:39:04

AndrijaM
Member
êta
Real name: Andrija Markovic
From: Belgrade, Serbia
Website

Re: rah_comment_spam

Ok, thanks, I understand, thank you for your time.

Offline

 

#33 2009-08-15 04:16:17

wet
Developer
omega
Real name: Robert
From: Lenzing, Austria
Known languages: de-AT, en, PL/M-80
Website

Re: rah_comment_spam

As clients tend to mess around with this entry, I’d suggest to tolerate double commata or trailing commata in the spam words lists, like so:

In rah_comment_spam_countspamwords, change

$spamword = explode(',',$spamwords);
foreach($spamword as $needle) {
    $i = $i + substr_count(strtolower(' '.$where.' '),strtolower($needle));
} 

to

$spamword = explode(',',$spamwords);
foreach($spamword as $needle) {
    $needle = trim($needle);
     if(!empty($needle)) $i = $i + substr_count(strtolower(' '.$where.' '),strtolower($needle));
}

…or use do_list().


Recent: wet_haystack ׀ Popular: wet_slimpattern ׀ Handy: wet_quicklink | Me

Offline

 

#34 2009-08-15 17:53:19

Gocom
Moderator
omega
Real name: Jukka Svahn
From: Finland
Known languages: EN, FI
Website

Re: rah_comment_spam

Thanks wet. Version 0.2.1 implements the feature.


Rah-plugins | What? I’m a little confused… again :-) <txp:is_god />

Offline

 

#35 2009-12-02 20:23:44

Gocom
Moderator
omega
Real name: Jukka Svahn
From: Finland
Known languages: EN, FI
Website

Re: rah_comment_spam

Version 0.3 of rah_comment_spam released. Changelog:

  • Added email DNS validation.

More info and downloads


Rah-plugins | What? I’m a little confused… again :-) <txp:is_god />

Offline

 

#36 2010-04-06 11:59:37

jstubbs
Moderator
omega
Real name: Jonathan
From: Barcelona
Known languages: en-gb, es-es, fr-fr
Website

Re: rah_comment_spam

Jukka, I am using v0.12 on TXP Tips – I just noticed the update to v0.3 so I’ll upgrade now, but redbot had some problems commenting on the site and I wondered if you know what the error is?


TXP TipsTXP MinimaTXP Minima PhotoblogMy pagePro Tennis Jobs

TXP Builders – finely-crafted code, design and txp

Offline

 

#37 2010-04-06 20:52:51

Gocom
Moderator
omega
Real name: Jukka Svahn
From: Finland
Known languages: EN, FI
Website

Re: rah_comment_spam

jstubbs wrote:

Jukka, I am using v0.12 on TXP Tips – I just noticed the update to v0.3 so I’ll upgrade now, but redbot had some problems commenting on the site and I wondered if you know what the error is?

Sorry, I have no idea. Might be the lenght of the message or something, or the code in the message somehow did match to the spamwords(?). The plugin has no “magic” filter or anything. It just does what is set in the preferences. Version 0.1.2 did have some matching issues with cases, but that shouldn’t be it.

Edit. Oh you mean Non-static method timezone::is_dst() should not be called statically in … …txplib_misc.php on line 1265. Didn’t see it at first look. That error is somewhat caused by TXP’s core. See:

Last edited by Gocom (2010-04-06 21:10:25)


Rah-plugins | What? I’m a little confused… again :-) <txp:is_god />

Offline

 

#38 2010-06-25 11:51:58

Grégocentrique
Plugin Author
beta
From: Rouen, France
Known languages: French
Website

Re: rah_comment_spam

Hi,

I installed the plugin two weeks ago and limited the number of url by comment to 1. Unfortunately, I’m still having a lot of spam containing several links or URL (example : [URL=http://, [link=http://, href=“http://) and they’re not blocked. Do you have a trick to block them?

Thanks. :)

Offline

 

#39 2010-06-25 14:38:48

Gocom
Moderator
omega
Real name: Jukka Svahn
From: Finland
Known languages: EN, FI
Website

Re: rah_comment_spam

Grégocentrique wrote:

I installed the plugin two weeks ago and limited the number of url by comment to 1. Unfortunately, I’m still having a lot of spam containing several links or URL (example : [URL=http://, [link=http://, href=“http://) and they’re not blocked. Do you have a trick to block them?

Rah_comment_spam basically just counts the amount of http:// mentioned in a comment. If the link doesn’t have http:// in it, it won’t be blocked.

If you set the Max amount of URLs: to 1, it means that every comment can still contain a single link. If you want to limit all links, value 0 (zero) should do it.

You also try to block the bracket tags by setting them as spamwords ([URL=, [link=).


Rah-plugins | What? I’m a little confused… again :-) <txp:is_god />

Offline

 

#40 2010-06-25 17:13:10

Grégocentrique
Plugin Author
beta
From: Rouen, France
Known languages: French
Website

Re: rah_comment_spam

Thank you for your answer. I configured the plugin like you explained, but still have spam with those words. I’m now supposing that maybe there is a conflict with another plugin…

Offline

 

Powered by PunBB
© Copyright 2002 – 2005 Rickard Andersson