Hi, I have had a captcha field working on two sites for a couple of years & now they have stopped working. I'm running php 5.2.17 & have the fixes in the includes folder. Could someone give me their captcha field code so I can compare it to mine, here it is
TOP OF PAGE CODE
Code: Select all
<?php // Captcha Image
$captcha_id_obj = new KT_CaptchaImage("captcha_id_id");
?>
CAPTCHA INPUT FIELD FORM CODE the getImageURL is empty & on the page it has the field but where the image was I now only get this code
<img src=" I have tried changing the permissions to 777 in the captcha folder but no luck
Code: Select all
<tr>
<td class="KT_th">Enter code: <span class="style3">*</span></td>
<td><div align="left">
<input type="text" name="captcha_id" id="captcha_id" value="" />
<br />
Type the characters you see in the picture below.<br />
<img src="<?php echo $captcha_id_obj->getImageURL("../");?>" border="1" /></div></td>
</tr>
Has anyone had this happen before?
Thanks Chris