Hi my Captcha for the site not working very well lol
when members signup and enter a Captcha
this what show up (error producing security image)
?
Hi my Captcha for the site not working very well lol when members signup and enter a Captcha this what show up (error producing security image) ? |
if i had to guess apache is not compiled with the right font. https://dolphin-techs.com - Skype: Dolphin Techs |
How to fix this ? |
many host disable Free type support. Try to put this in a file and upload it to server and visit it. like this <?php var_dump(gd_info()); ?> put this in gd.php and upload it to your server. now visit it from browser yoursite.com/gd.php, you will get something like this. array(12) { ["GD Version"]=> string(27) "bundled (2.0.34 compatible)" ["FreeType Support"]=> bool(true) ["FreeType Linkage"]=> string(13) "with freetype" ["T1Lib Support"]=> bool(true) ["GIF Read Support"]=> bool(true) ["GIF Create Support"]=> bool(true) ["JPG Support"]=> bool(true) ["PNG Support"]=> bool(true) ["WBMP Support"]=> bool(true) ["XPM Support"]=> bool(false) ["XBM Support"]=> bool(true) ["JIS-mapped Japanese Font Support"]=> bool(false) } the text in red is generally disabled. This will make your work easier. Good luck...:) so much to do.... |
Will try it out thank you. many host disable Free type support. Try to put this in a file and upload it to server and visit it. like this <?php var_dump(gd_info()); ?> put this in gd.php and upload it to your server. now visit it from browser yoursite.com/gd.php, you will get something like this. array(12) { ["GD Version"]=> string(27) "bundled (2.0.34 compatible)" ["FreeType Support"]=> bool(true) ["FreeType Linkage"]=> string(13) "with freetype" ["T1Lib Support"]=> bool(true) ["GIF Read Support"]=> bool(true) ["GIF Create Support"]=> bool(true) ["JPG Support"]=> bool(true) ["PNG Support"]=> bool(true) ["WBMP Support"]=> bool(true) ["XPM Support"]=> bool(false) ["XBM Support"]=> bool(true) ["JIS-mapped Japanese Font Support"]=> bool(false) } the text in red is generally disabled. This will make your work easier. Good luck...:)
|