well i got the same problem and found two solutions::
1. open /open.php and find
if(!$thisuser && $cfg->enableCaptcha()){
if(!$_POST)
$errors='Enter text shown on the image';
elseif(strcmp($_SESSION,md5($_POST)))
$errors='Invalid - try again!';
}
the problem is in !$thisuser first line in the above example line 23 in original code
replace that line with ::
if(!$thisuser && $cfg->enableCaptcha() && (!$thisclient || !$thisclient->isValid())){
so you will get something like this::
if(!$thisuser && $cfg->enableCaptcha() && (!$thisclient || !$thisclient->isValid())){
if(!$_POST)
$errors='Enter text shown on the image';
elseif(strcmp($_SESSION,md5($_POST)))
$errors='Invalid - try again!';
}
this will allow clients to make a new ticket without captcha if you dont want this follow step 2
2. open /include/client/open.inc.php
and find::
<?if($cfg && $cfg->enableCaptcha() && (!$thisclient || !$thisclient->isValid())) {
as you can see this does the same as my fix in order to get the captcha working make the bug here
replace that line with::
<?if($cfg && $cfg->enableCaptcha()) {
this will show the capcha from now on
Regards,
Jamie Alexander Dekker
Developer, Programmer and System Analyst at
Rotterdam, The Netherlands