Quote
riomas wrote:
do not understand what can be?
var $use_gd_font = false;
var $use_gd_font = true;
Quote
camau wrote:
In my experience, your host server has no GD packet installed. If it is your own server, install GD packet.
you could delete the following code in contact.php to remove it:
echo "<img id='captcha' src='".INCLUDES."securimage/securimage_show.php' alt='' align='left' />\n";
echo "<a href='".INCLUDES."securimage/securimage_play.php'><img src='".INCLUDES."securimage/images/audio_icon.gif' alt='' align='top' class='tbl-border' style='margin-bottom:1px' /></a><br />\n";
echo "<a href='#' onclick=\"document.getElementById('captcha').src = '".INCLUDES."securimage/securimage_show.php?sid=' + Math.random(); return false\"><img src='".INCLUDES."securimage/images/refresh.gif' alt='' align='bottom' class='tbl-border' /></a>\n";
echo "</td>\n</tr>\n<tr>";
echo "<td class='tbl'>".$locale['408']."</td>\n";
echo "<td class='tbl'><input type='text' name='captcha_code' class='textbox' style='width:100px' /></td>\n";
Hope it help !
Quote
warwound wrote:
It may be that GD library is installed but hasn't been compiled with Freetype support.
This is the situation with my webhost (110mb.com).
My capcha image failed to work as the imagettftext() function in secureimage.php is therefore undefined.
The solution for me was to edit secureimage.php and change the line that reads:Code Download source
var $use_gd_font = false;
Change it to:Code Download source
var $use_gd_font = true;
Once that's done all works fine.
warwound.
Category Forum
System Administration - 8Labels
None yet
Statistics
4 participants
Notifications
You are not receiving notifications from this thread.
Related Questions