Captcha Image is not displaying

vaijanath
07:08:14
Hello,
I have downloaded the source code of PHP script for captcha image. But the captcha image is not displaying.
Can anyone help me please..
Thank you in advance
smo1234
07-15-2014
What is the error message you are getting ? Do you have GD support?
vaijanath
07-17-2014
No error messages. Its displaying a small image icon but not the captcha image. And i dont know about gd support. I have gone through the above gd support link but m not able to find the gd extension in php.ini file. M using linux mint os.
smo1234
07-17-2014
Try running this code and see the output.

<?Php
if (extension_loaded('gd')) {
echo "<br>GD support is loaded ";
}else{
echo "<br>GD support is NOT loaded ";
}
if(function_exists('gd_info')){
echo "<br>GD function support is available ";
}else{
echo "<br>GD function support is NOT available ";
}
?>
vaijanath
07-17-2014
Its showing the following output :

GD support is NOT loaded
GD function support is NOT available

What i'm suppose to do to enable GD support?
smo1234
07-18-2014
Check this for loading extension dll, You can also read this tutorial on adding extensions
Please Login to post your reply or start a new topic