I am using IE 6, but why it can't show any gd image at all? what should i do? thanks🙂
The problem is probably not in IE - maybe GD isn't installed correctly, or something. Are there any error mesages in the server logs?
Just to test if the gd installed on not try the following code:
<?php $gd=extension_loaded('gd'); if($gd){ echo "gd is available";} else{ echo "gd isn't installed, I'm in trouble!!!";} ?>
gd isn't installed, I'm in trouble!!!
how come the gd isn't installed, i already checked gd dll and the file exists. Also, i already changed the extension_dir in php to the folder where gd dll located. Please help me 🙁 thanks 🙂
Uncomment the gd.dll line in your php.ini Then you will most likely have to reboot.
jerdo, thanks for your help but what do u mean by uncomment the gd.dll line? which line? is it this line, ;extension=php_gd.dll? what should i do with that line? thanks so much 🙂
All you need to do is take off the ; and the beginning of the line.
If you have any problems with getting the extensions to run, please see my post here for more details...
i already follow all of your directions,but after I omit the ';' sign in front of extension_dir="php_gd.dll" and i reopen the apache, all the php page won't open please help me, thanks 🙂