Version 2.82 released! | Page 2 | Peter's Custom Anti-Spam for WordPress | Forum
Back to the custom anti-spam plugin page
5:19 pm
Peter,
I've seen that error throughout the log file. For me, it's just an annoyance because I am trying to scan the log file for "true" errors. Since the plugin still works, it's sort of a harmless error. I'll keep an eye out for any updates you might post since I'm keen on upgrading anyway.
Cheers...
4:19 pm
Excellent - thank you so much for taking the time to create this plugin! I was just wondering how I can change the font size and/or the size of the image box?
Edit by Peter
Answered here: http://www.theblog.ca/?page_id.....38;topic=7
11:34 am
Hi. Saw after I posted on the blog that I should've posted here (GULP).
---clip clip---
Hi.
I really really people which contribute to the rest of the world and I like your effort with this. I however have a pointer… The word should be randomized since at least my imagination will run out within 100 words.. Is id configurable?
I agree that the captcha should be readable but look here: http://sam.zoy.org/pwntcha/ for inspiration :)
I use jcaptcha.sf.net (look at it) on my site since it is so damn configurable example of my use here: http://www.tailsweep.com/captc.....enderer.do
There are of course a zillion things to add to a captcha to make it unbreakable but then it will most definitely then not be usable. However a random word list is really needed to get an easy share of security (at least a feel of it :) ).
Anyway I’m starting a wpmu blog now so I cannot rely on the things I know best which is Java stuff so I need to rely on cool developers like yourself.
Hope you have a enhancement already in your pocket ready to fire.
Kindly
//Marcus
---clip clip---
4:13 am
Hi Peter.
I successfully ripped some code from http://www.white-hat-web-desig.....aptcha.php
which I found out is used in the wp-signup-captcha http://wpmudev.org/project/WPM.....up-Captcha
Just comment or remove all refs to $cas_text[] and add this below.
/*
*$cas_text[] = "school";
$cas_text[] = "blogs";
$cas_text[] = "edu";
$cas_text[] = "gidday";
$cas_text[] = "nospam";
$cas_text[] = "chill";
$cas_text[] = "whoa";
$cas_text[] = "blocked";
$cas_text[] = "enjoy";
$cas_text[] = "feast";*/
*/
function generateCode($characters) {
/* list all possible characters, similar looking characters and vowels have been removed */
$possible = '23456789bcdfghjkmnpqrstvwxyz';
$code = '';
$i = 0;
while ($i < $characters) {
$code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);
$i++;
}
return $code;
}
$cas_text[0] = generateCode($characters='6');
4:17 am
Oh sorry to bother again...but I have a suggestion...
Why don't you two developers co-op in the two wpmu projects so you use the same codebase for rendering the captcha. I mean no reinventing the wheel and double smartness involved and someone else which can relieve you of some sharity work which OS can be sometimes.
Just think of it.
I have now released a Random Anti-Spam version of the plugin...