4
           
            
                
     
    
    I suppose you don't see anything on your screen at the place where the captcha image should be located? Do you have a GD library installed in the PHP environment? Some admin themes or modules display this info. Else make and run infogd.php: 
 (gd_info()); ?>  
or info.php: 
 (); ?>  
 If a gd library is present try this imagegd.php 
 $im = imagecreatetruecolor(120, 20); 
$text_color = imagecolorallocate($im, 233, 14, 91); 
imagestring($im, 1, 5, 5,  'XOOPS Rocks!', $text_color); 
header('Content-type: image/jpeg'); 
imagejpeg($im); 
imagedestroy($im); 
?>  
What are the results of infogd.php and imagedg.php?