Click to See Complete Forum and Search --> : I need help in GD


angel22
07-17-2005, 04:09 PM
hi everyone

I'm working in WinXP platform with apache 1.3.29 and php v4.3.4
in my php.ini I found this

;extension =php_gd2.dll
extension_dir="./";
and when I'm trying to deal with images it works but only with some instructions

but with imagedrawcircle() it doesn't work, can anybody tell me why and how I can solve this problem.

i face another problem; when I'm trying to change some values in my php.ini file
it doesn't change, I'm wondering why.

jara06
07-17-2005, 07:15 PM
set extension_dir this way:
extension_dir = "C:\path\to\php\ext"
and then enable the extension
extension = php_gd2.dll

steps:
1. change config
2. restart server
3. THEN test your scripts

;)