Page 1 of 1
how to know if GD installed?
Posted: Wed Jun 02, 2004 2:17 am
by kevin7
can anyone teach me ? how i know if i installed the GD and the GD is working properly?
i've download the GD and installed... from
http://gnuwin32.sourceforge.net/packages/gd.htm
i downloaded the setup file, i've restart my computer...
but y it is not working? is that i've to change oher configuration?
i'm using winXP's IIS and php 4.3.6...
Posted: Wed Jun 02, 2004 2:31 am
by qads
use phpinfo() and see if it shows up on the page, if it does, google for [google]GD tutorials[/google] and paste the code and test it out. if its a no go then google for [google]install GD on IIS[/google] or check this out.
http://www.livejournal.com/community/ph ... /1852.html
Posted: Wed Jun 02, 2004 2:44 am
by kevin7
but the problem is.... i can't find the php_gd.dll ir php_gd2.dll
can u send to me~~ is urgent~~
Posted: Wed Jun 02, 2004 3:16 am
by qads
Posted: Wed Jun 02, 2004 3:27 am
by kevin7
aisk... i downloaded... almost everything~~~ i still can't find the php_gd2.all~~~
damn!.. i goin' to insane...
anyone? can u send me?
is that means if i hv the dll... then i can draw, convert to thumbnail??
tq
Posted: Wed Jun 02, 2004 3:56 am
by malcolmboston
This will tell you if you have GD loaded
Code: Select all
<?php
if (extension_loaded("gd"))
{
echo "GD found";
}
else
{
echo "GD not found.
}
?>