[Copied from related post that linked to this one...]
JIC anyone is interested, I have incorporated the CAPTCHA system available from
http://www.chimetv.com/tv/products/botblock.shtml
... At least, somewhat.
First, understand this:
I AM NOT A PHP DEVELOPER -- THIS IS THE FIRST TIME I EVER MODIFIED A PHP FILE!!! So if something looks
bass-ackwards,
it likely is. Please feel free to improve on what I had done.
The reason I (and likely the above poster) cannot get the
iframe to show is because the templates do not seem to support calling PHP functions. Instead, my new user page generates a popup window with the CAPTCHA image in it.
I also added a field for the CAPTCHA image-value onto the registration template. This value is validated in the
createuser function in
users.php.
Here is what I did:
First, place the
botblock.inc file into your site's root directory.
Then, create a file called
captchaimage.php with the following contents:
<?php
require_once('lib-common.php');
require "botblock.inc";
$VERBOSE = false;
if (isset ($HTTP_POST_VARS['mode'])) {
$mode = $HTTP_POST_VARS['mode'];
}
elseif (isset ($HTTP_GET_VARS['mode'])) {
$mode = $HTTP_GET_VARS['mode'];
}
else {
$mode = "";
}
$display .= printBotBlock("YourUSERNAME", "YourPASSWORD");
echo $display;
?>
In the
users.php file, add the "
require "botblock.inc";" after the "
require_once('lib-common.php')". I then added the following code, which adds the ability to validate the CAPTCHA code and raises the popup window. First, add a third parameter to the
createuser function called
$ccode:
function createuser($username,$email,$ccode)
In the beginning of the
createuser function (after variable setup), add the following:
if(!validBotBlock())
{
$msg = "Invalid CAPTCHA Value specified. Please try again.";
$retval .= COM_siteHeader ('menu');
if ($_CONF['custom_registration'] && function_exists(custom_userform)) {
$retval .= custom_userform ($msg);
} else {
$retval .= newuserform ($msg);
}
$retval .= COM_siteFooter();
return $retval;
}
I also added the following to the
newuserform function (after the first "if"):
$retval .= '<script language="JavaScript">';
$retval .= "window.open('<YourGeekLogSiteRoot/captchaimage.php', 'CAPTCHA','width=220,height=60,resizable=yes,scrollbars=no')</script>";
And lastly, I added the following to my
registrationform.thtml file, right after the for the user's email address ([lang_email]):
<tr>
<td colspan=2>
To prevent spam bots from filling this form automatically, we require that you pass through a CAPTCHA system.
A popup window should have appeared with a CAPTCHA image (if one does not appear, bypass any popup-blockers and refresh this page).
If the text is hard to read, you can click on the image to regenerate it.
</td>
</tr>
<tr>
<td valign=top>
</td>
<td valign=top>
<b>Please type the CAPTCHA code here</b>:<br><br>
<input name="bb_codeword" maxlength=8 value="">
<br><SMALL>Close the CAPTCHA window AFTER registration is complete!</SMALL><BR>
</td>
</tr>
And that was it!
Quite a bit kudgy, but it works correctly...
Hope that helps... In some way, at least! This has only been tested with IE so far...
Peace!
-=- James.